Automattic\WooCommerce\Blocks\BlockTypes

ProductQuery::get_on_sale_products_query()privateWC 1.0

Return a query for on sale products.

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

Хуков нет.

Возвращает

Массив.

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

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

Код ProductQuery::get_on_sale_products_query() WC 8.7.0

private function get_on_sale_products_query() {
	return array(
		'post__in' => wc_get_product_ids_on_sale(),
	);
}