W3cubDocs

/WordPress

register_block_pattern( string $pattern_name, array $pattern_properties ): bool

Registers a new block pattern.

Parameters

$pattern_namestringrequired
Block pattern name including namespace.
$pattern_propertiesarrayrequired
List of properties for the block pattern.
See WP_Block_Patterns_Registry::register() for accepted arguments.

Return

bool True if the pattern was registered with success and false otherwise.

Source

function register_block_pattern( $pattern_name, $pattern_properties ) {
	return WP_Block_Patterns_Registry::get_instance()->register( $pattern_name, $pattern_properties );
}

Changelog

Version Description
5.5.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/register_block_pattern