Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Products::delete_product_count_cache()public staticWC 1.0

Delete the product count transient used in has_products() method to refresh the cache.

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

Хуков нет.

Возвращает

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

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

$result = Products::delete_product_count_cache();

Код Products::delete_product_count_cache() WC 9.7.1

public static function delete_product_count_cache() {
	delete_transient( self::PRODUCT_COUNT_TRANSIENT_NAME );
}