WP_Block_Styles_Registry::get_registered_styles_for_block( string $block_name )

Retrieves registered block styles for a specific block.


Description Description


Parameters Parameters

$block_name

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


Top ↑

Return Return

(array) Array whose keys are block style names and whose value are block style properties.


Top ↑

Source Source

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

	public function get_registered_styles_for_block( $block_name ) {
		if ( isset( $this->registered_block_styles[ $block_name ] ) ) {
			return $this->registered_block_styles[ $block_name ];
		}
		return array();
	}

Top ↑

Changelog Changelog

Changelog
Version Description
5.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.