wpsc_admin_bar_delete_cache_ajax()
Delete cache for a specific page.
No Hooks.
Returns
null. Nothing (null).
Usage
wpsc_admin_bar_delete_cache_ajax();
wpsc_admin_bar_delete_cache_ajax() wpsc admin bar delete cache ajax code WPSCache 3.1.0
function wpsc_admin_bar_delete_cache_ajax() {
// response output
header( "Content-Type: application/json" );
if ( ! wpsc_delete_cache_directory() ) {
if ( defined( 'WPSCDELETEERROR' ) ) {
return json_decode( constant( 'WPSCDELETEERROR' ) );
} else {
return false;
}
}
}