wpsc_admin_bar_delete_cache_ajax()
Delete cache for a specific page.
No Hooks.
Return
null
. Nothing (null).
Usage
wpsc_admin_bar_delete_cache_ajax();
wpsc_admin_bar_delete_cache_ajax() wpsc admin bar delete cache ajax code WPSCache 1.12.4
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 json_decode( false ); } } }