Automattic\WooCommerce\Blocks\BlockTypes
FeaturedCategory::get_block_type_attributes()
Get block attributes.
Метод класса: FeaturedCategory{}
Хуков нет.
Возвращает
Массив
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_block_type_attributes();
Код FeaturedCategory::get_block_type_attributes() FeaturedCategory::get block type attributes WC 7.7.2
protected function get_block_type_attributes() { return array_merge( parent::get_block_type_attributes(), array( 'textColor' => $this->get_schema_string(), 'fontSize' => $this->get_schema_string(), 'lineHeight' => $this->get_schema_string(), 'style' => array( 'type' => 'object' ), ) ); }