WC_Brands::invalidate_wc_layered_nav_counts_cache()publicWC 1.0

Invalidates the layered nav counts cache.

Method of the class: WC_Brands{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Brands = new WC_Brands();
$WC_Brands->invalidate_wc_layered_nav_counts_cache();

WC_Brands::invalidate_wc_layered_nav_counts_cache() code WC 9.5.1

public function invalidate_wc_layered_nav_counts_cache() {
	$taxonomy = 'product_brand';
	delete_transient( 'wc_layered_nav_counts_' . sanitize_title( $taxonomy ) );
}