Automattic\WooCommerce\Blocks\BlockTypes

ProductFilterPrice::initializeprotectedWC 1.0

Initialize this block type.

  • Hook into WP lifecycle.
  • Register the block with WordPress.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->initialize();

Код ProductFilterPrice::initialize() WC 10.5.0

protected function initialize() {
	parent::initialize();

	add_filter( 'woocommerce_blocks_product_filters_selected_items', array( $this, 'prepare_selected_filters' ), 10, 2 );
}