wpsc_disable_cache_on_wp_die
wpsc_disable_cache_on_wp_die
Appears in: wp-super-cache.3.1.0
Hook Type: filter
Displaying hooks found in version: wp-super-cache.3.1.0apply_filters('wpsc_disable_cache_on_wp_die') is found 1 times:
- /wp-cache.php line 176
* Filters whether to disable caching when wp_die() is invoked. * * @param bool $disable Whether to set DONOTCACHEPAGE. Default true. */ if ( apply_filters( 'wpsc_disable_cache_on_wp_die', true ) && ! defined( 'DONOTCACHEPAGE' ) ) { define( 'DONOTCACHEPAGE', true ); } return $handler; } add_filter( 'wp_die_handler', 'wpsc_wp_die_disable_cache' );