Automattic\WooCommerce\Blocks\BlockTypes

ProductButton::prevent_cache()privateWC 1.0

Prevent caching on certain pages

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

Хуков нет.

Возвращает

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

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

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

Код ProductButton::prevent_cache() WC 9.6.0

private function prevent_cache() {
	\WC_Cache_Helper::set_nocache_constants();
	nocache_headers();
}