WP_Super_Cache_Rest_Get_Status::add_cache_disabled_status
Method of the class: WP_Super_Cache_Rest_Get_Status{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->add_cache_disabled_status( $status );
- $status(array) (required) (passed by reference — &)
- .
WP_Super_Cache_Rest_Get_Status::add_cache_disabled_status() WP Super Cache Rest Get Status::add cache disabled status code WPSCache 3.1.1
protected function add_cache_disabled_status( & $status ) {
global $wp_cache_config_file;
if ( ! is_writeable_ACLSafe( $wp_cache_config_file ) ) {
$status['cache_disabled'] = true;
}
}