这只会跟踪post_type
查询var,但也可以为query_vars
在所有post\\u类型中,或者只希望获得自定义404页面的类型。
add_filter( \'404_template_hierarchy\', function( $templates ) {
global $wp_query;
if ( \'\' !== $wp_query->get(\'post_type\') ) {
array_unshift( $templates,
sprintf( \'%s-404.php\', $wp_query->get(\'post_type\') ) );
}
return $templates;
});