WP_Block_Styles_Registry::get_registered
Retrieves the properties of a registered block style for the given block type.
Method of the class: WP_Block_Styles_Registry{}
No Hooks.
Returns
Array. Registered block style properties.
Usage
$WP_Block_Styles_Registry = new WP_Block_Styles_Registry(); $WP_Block_Styles_Registry->get_registered( $block_name, $block_style_name );
- $block_name(string) (required)
- Block type name including namespace.
- $block_style_name(string) (required)
- Block style name.
Changelog
| Since 5.3.0 | Introduced. |
WP_Block_Styles_Registry::get_registered() WP Block Styles Registry::get registered code WP 6.8.3
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 ];
}