From 054b3de8262145183bee2c22a02ebbd7c9878526 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Fri, 27 Jun 2025 18:30:11 +0200 Subject: [PATCH] FEATURE Register new blocks for content, heading, and decorative shapes --- plugins/carhop-blocks/index.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/carhop-blocks/index.php b/plugins/carhop-blocks/index.php index 8744312..99c1697 100644 --- a/plugins/carhop-blocks/index.php +++ b/plugins/carhop-blocks/index.php @@ -43,10 +43,9 @@ function carhop_register_blocks() register_block_type(__DIR__ . '/blocks/front-header/build'); register_block_type(__DIR__ . '/blocks/chapter-section/build'); register_block_type(__DIR__ . '/blocks/dbmob-grid/build'); - - - - // register_block_type(__DIR__ . '/acf-blocks/documentation-accordion-panel'); + register_block_type(__DIR__ . '/blocks/content-box/build'); + register_block_type(__DIR__ . '/blocks/heading/build'); + register_block_type(__DIR__ . '/blocks/decorative-shapes/build'); } add_action('init', 'carhop_register_blocks');