WC_Cache_Helper::set_nocache_constants() public WC 1.0
Set constants to prevent caching by some plugins.
{} Это метод класса: WC_Cache_Helper{}
Хуков нет.
Возвращает
Разное.
Использование
$result = WC_Cache_Helper::set_nocache_constants( $return );
- $return(разное)
- Value to return. Previously hooked into a filter.
Код WC_Cache_Helper::set_nocache_constants() WC Cache Helper::set nocache constants WC 5.0.0
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;
}