WP_Block_Patterns_Registry::get_registered() WordPress Method

The WP_Block_Patterns_Registry::get_registered() method is used to retrieve all registered block patterns. Block patterns are stored as an array with each pattern being an instance of the WP_Block_Pattern class.

WP_Block_Patterns_Registry::get_registered( string $pattern_name ) #

Retrieves an array containing the properties of a registered block pattern.


Parameters

$pattern_name

(string)(Required)Block pattern name including namespace.


Top ↑

Return

(array) Registered pattern properties.


Top ↑

Source

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

	public function get_registered( $pattern_name ) {
		if ( ! $this->is_registered( $pattern_name ) ) {
			return null;
		}

		return $this->registered_patterns[ $pattern_name ];
	}


Top ↑

Changelog

Changelog
VersionDescription
5.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.