WC_Cache_Helper::set_nocache_constants()public staticWC 1.0

Set constants to prevent caching by some plugins.

Method of the class: WC_Cache_Helper{}

No Hooks.

Return

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() code WC 8.6.1

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;
}