Automattic\WooCommerce\Blocks\BlockTypes
ProductFilterPrice::initialize()
Initialize this block type.
- Hook into WP lifecycle.
- Register the block with WordPress.
Метод класса: ProductFilterPrice{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->initialize();
Код ProductFilterPrice::initialize() ProductFilterPrice::initialize WC 9.3.3
protected function initialize() { parent::initialize(); add_filter( 'collection_filter_query_param_keys', array( $this, 'get_filter_query_param_keys' ), 10, 2 ); add_filter( 'collection_active_filters_data', array( $this, 'register_active_filters_data' ), 10, 2 ); }