PATH:
home
/
ediuae
/
pearlandpetalbeautyspa.com
/
wp-content
/
themes
/
euphony-blocks
/
inc
<?php /** * Block Patterns * * @package Euphony_Blocks * @since 1.0 */ /** * Registers block patterns and categories. * * @since 1.0 * * @return void */ function euphony_blocks_register_block_patterns() { $block_pattern_categories = array( 'euphony-blocks' => array( 'label' => esc_html__( 'Euphony Blocks', 'euphony-blocks' ) ), 'pages' => array( 'label' => esc_html__( 'Pages', 'euphony-blocks' ) ), ); /** * Filters the theme block pattern categories. * * @since 1.0 * * @param array[] $block_pattern_categories { * An associative array of block pattern categories, keyed by category name. * * @type array[] $properties { * An array of block category properties. * * @type string $label A human-readable label for the pattern category. * } * } */ $block_pattern_categories = apply_filters( 'euphony_blocks_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 ); } } } add_action( 'init', 'euphony_blocks_register_block_patterns', 9 );
[-] block-patterns.php
[edit]
[+]
..
[-] block-filters.php
[edit]
[-] block-styles.php
[edit]
[-] about.php
[edit]
[-] persist-admin-notices-dismissal.php
[edit]
[-] icon-function.php
[edit]