WP_Block_Type_Registry::get_registered() WordPress Method

The WP_Block_Type_Registry::get_registered() method is used to get an array of all registered block types.

WP_Block_Type_Registry::get_registered( string $name ) #

Retrieves a registered block type.


Parameters

$name

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


Top ↑

Return

(WP_Block_Type|null) The registered block type, or null if it is not registered.


Top ↑

Source

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

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

		return $this->registered_block_types[ $name ];
	}


Top ↑

Changelog

Changelog
VersionDescription
5.0.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.