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: //proc/self/cwd/wp-content/themes/gutenify-photography/inc/core/block-patterns.php
<?php
/**
 * Gutenify Photography: Block Patterns
 *
 * @since Gutenify Photography 1.0
 */

/**
 * Registers block patterns and categories.
 *
 * @since Gutenify Photography 1.0
 *
 * @return void
 */
function gutenify_photography_register_block_patterns() {

	$patterns = array();

	$block_pattern_categories = array(
		'gutenify-photography' => array( 'label' => __( 'Gutenify Photography', 'gutenify-photography' ) )
	);

	/**
	 * Filters the theme block pattern categories.
	 *
	 * @since Gutenify Photography 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( 'gutenify_photography_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', 'gutenify_photography_register_block_patterns', 9 );