WP_Theme_JSON::get_styles_block_nodes()publicWP 6.1.0

A public helper to get the block nodes from a theme.json file.

Метод класса: WP_Theme_JSON{}

Хуков нет.

Возвращает

Массив. The block nodes in theme.json.

Использование

$WP_Theme_JSON = new WP_Theme_JSON();
$WP_Theme_JSON->get_styles_block_nodes();

Список изменений

С версии 6.1.0 Введена.

Код WP_Theme_JSON::get_styles_block_nodes() WP 6.5.2

public function get_styles_block_nodes() {
	return static::get_block_nodes( $this->theme_json );
}