HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/www/klasiboi.com/wp-content/themes/clothing-apparel-shop/block-patterns.php
<?php
/**
 * Clothing Apparel Shop: Block Patterns
 *
 * @since Clothing Apparel Shop 1.0
 */

/**
 * Registers block patterns and categories.
 *
 * @since Clothing Apparel Shop 1.0
 *
 * @return void
 */
function clothing_apparel_shop_register_block_patterns() {
	$clothing_apparel_shop_block_pattern_categories = array(
		'clothing-apparel-shop'    => array( 'label' => __( 'Clothing Apparel Shop', 'clothing-apparel-shop' ) ),
	);

	$clothing_apparel_shop_block_pattern_categories = apply_filters( 'clothing_apparel_shop_block_pattern_categories', $clothing_apparel_shop_block_pattern_categories );

	foreach ( $clothing_apparel_shop_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', 'clothing_apparel_shop_register_block_patterns', 9 );