WP_Block_Styles_Registry::get_registered

Advertisement

Summery Summery

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

Syntax Syntax

WP_Block_Styles_Registry::get_registered( string $block_name, string $block_style_name )

Parameters Parameters

$block_name

(Required) Block type name including namespace.

$block_style_name

(Required) Block style name.

Return Return

(array) Registered block style properties.

Source Source

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

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

		return $this->registered_block_styles[ $block_name ][ $block_style_name ];
	}

Advertisement

Changelog Changelog

Changelog
Version Description
5.3.0 Introduced.

Advertisement

Leave a Reply