File: //proc/thread-self/cwd/wp-content/themes/hardware-tools-store/block-patterns.php
<?php
/**
* Hardware Tools Store: Block Patterns
*
* @since Hardware Tools Store 1.0
*/
/**
* Registers block patterns and categories.
*
* @since Hardware Tools Store 1.0
*
* @return void
*/
function hardware_tools_store_register_block_patterns() {
$block_pattern_categories = array(
'hardware-tools-store' => array( 'label' => __( 'Hardware Tools Store', 'hardware-tools-store' ) ),
);
$block_pattern_categories = apply_filters( 'hardware_tools_store_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', 'hardware_tools_store_register_block_patterns', 9 );