Automattic\WooCommerce\Blocks\BlockTypes
AbstractBlock::get_block_type_style()
Get the frontend style handle for this block type.
Метод класса: AbstractBlock{}
Хуков нет.
Возвращает
Строку[]|null
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_block_type_style();
Код AbstractBlock::get_block_type_style() AbstractBlock::get block type style WC 9.2.3
protected function get_block_type_style() { $this->asset_api->register_style( 'wc-blocks-style-' . $this->block_name, $this->asset_api->get_block_asset_build_path( $this->block_name, 'css' ), [], 'all', true ); return [ 'wc-blocks-style', 'wc-blocks-style-' . $this->block_name ]; }