WC_Cache_Helper::set_nocache_constants
Set constants to prevent caching by some plugins.
Method of the class: WC_Cache_Helper{}
No Hooks.
Returns
Mixed.
Usage
$result = WC_Cache_Helper::set_nocache_constants( $return );
- $return(mixed)
- Value to return. Previously hooked into a filter.
Default:true
WC_Cache_Helper::set_nocache_constants() WC Cache Helper::set nocache constants code WC 10.6.2
public static function set_nocache_constants( $return = true ) {
wc_maybe_define_constant( 'DONOTCACHEPAGE', true );
wc_maybe_define_constant( 'DONOTCACHEOBJECT', true );
wc_maybe_define_constant( 'DONOTCACHEDB', true );
return $return;
}