wp_cache_catch_404()
Catch 404 requests. Themes that use query_posts() destroy $wp_query->is_404
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wp_cache_catch_404();
Код wp_cache_catch_404() wp cache catch 404 WPSCache 2.0.1
function wp_cache_catch_404() { global $wp_cache_404; if ( function_exists( '_deprecated_function' ) ) _deprecated_function( __FUNCTION__, 'WP Super Cache 1.5.6' ); $wp_cache_404 = false; if( is_404() ) $wp_cache_404 = true; }