WC_Brands::invalidate_wc_layered_nav_counts_cache
Invalidates the layered nav counts cache.
Method of the class: WC_Brands{}
No Hooks.
Returns
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() WC Brands::invalidate wc layered nav counts cache code WC 10.4.3
public function invalidate_wc_layered_nav_counts_cache() {
$taxonomy = 'product_brand';
delete_transient( 'wc_layered_nav_counts_' . sanitize_title( $taxonomy ) );
}