W3cubDocs

/WordPress

register_block_pattern( string $pattern_name, array $pattern_properties )

Registers a new pattern.

Parameters

$pattern_name

(string) (Required) Pattern name including namespace.

$pattern_properties

(array) (Required) Array containing the properties of the pattern.

Return

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

Source

File: wp-includes/class-wp-block-patterns-registry.php

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–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/register_block_pattern