wpsc_admin_bar_delete_cache_ajax()
Delete cache for a specific page.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wpsc_admin_bar_delete_cache_ajax();
Код wpsc_admin_bar_delete_cache_ajax() wpsc admin bar delete cache ajax WPSCache 3.1.1
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;
}
}
}