'carhop-blocks', 'title' => __('Blocs Carhop ', 'carhop-blocks'), 'icon' => 'heart', ], ], $categories ); } add_action('block_categories_all', 'carhop_add_block_categories', 25, 2); ##### CUSTOM BLOCKS SETTINGS ##### require_once __DIR__ . '/src/audio-player/audio-player.php'; /* ---------------------------------------------------------------- ##### ENQUEUE BLOCKS ------------------------------------------------------------------*/ function carhop_register_blocks() { if (!function_exists('register_block_type')) { return; } register_block_type(__DIR__ . '/acf-blocks/gallery'); register_block_type(__DIR__ . '/acf-blocks/social-networks'); register_block_type(__DIR__ . '/acf-blocks/custom-video'); register_block_type(__DIR__ . '/acf-blocks/team-carhop'); // Enregistrer le script pour le bloc gallery wp_register_script( 'carhop-gallery-view', plugins_url('acf-blocks/gallery/view.js', __FILE__), array(), filemtime(__DIR__ . '/acf-blocks/gallery/view.js'), true ); } add_action('init', 'carhop_register_blocks');