从死亡医学中心出发,您可以尝试以下方法:
这不是百分之百有效
function wpse_20157_404( $standard_404 ) {
if ( is_single() || is_tag(\'whatever\',\'product\' && is_404()) ) // Use || to list multiple if\'s
include_wordpress_template(TEMPLATEPATH . \'/custom404.php\');
}
add_action( \'template_redirect\', \'wpse_20157_404\' );
或者我的原始答案
function wpse_20157_404( $standard_404 ) {
if ( is_single() || is_tag(\'whatever\',\'product\') ) // Use || to list multiple if\'s
include_wordpress_template(TEMPLATEPATH . \'/custom404.php\');
}
add_filter( \'404_template\', \'wpse_20157_404\' );