在哪里is_404()
准备好了吗?
查看查询中的源。php:
function is_404() {
global $wp_query;
if ( ! isset( $wp_query ) ) {
_doing_it_wrong( __FUNCTION__, __( \'Conditional query tags do not work before the query is run. Before then, they always return false.\' ), \'3.1\' );
return false;
}
return $wp_query->is_404();
}
它只返回已在$wp\\u查询中设置的值。
但是,如果我在set_query_var
这永远不会被击中。