????
Current Path : C:/inetpub/vhost/webkt.nextform.vn/wp-content/themes/fundifly-charity/inc/core/ |
Current File : C:/inetpub/vhost/webkt.nextform.vn/wp-content/themes/fundifly-charity/inc/core/block-pattern.php |
<?php /** * fundifly-charity: Block Patterns * * @since fundifly-charity 1.0.0 */ /** * Registers pattern categories for fundifly-charity * * @since fundifly-charity 1.0.0 * * @return void */ function fundifly_charity_register_pattern_category() { /* This code snippet is defining an array called `` which contains various block patterns categories for a WordPress theme or plugin called "fundifly-charity". Each key in the array represents a category name, and the corresponding value is an array with a 'label' key that holds the translated label for that category. */ $block_pattern_categories = array( 'fundifly-charity-template' => array('label' => __('Fundifly : Patterns', 'fundifly-charity')), ); $block_pattern_categories = apply_filters('fundifly_charity_block_pattern_categories', $block_pattern_categories); foreach ($block_pattern_categories as $name => $properties) { if (!WP_Block_Pattern_Categories_Registry::get_instance()->is_registered($name)) { register_block_pattern_category($name, $properties); // phpcs:ignore WPThemeReview.PluginTerritory.ForbiddenFunctions.editor_blocks_register_block_pattern_category } } } add_action('init', 'fundifly_charity_register_pattern_category', 1);