如果您想将一些帖子重定向到404页,那么可以在函数中使用以下代码段。您的子主题的php。
add_action( \'template_redirect\', \'post_redirect_func\' );
function post_redirect_func(){
global $post;
$redirect_url = get_template_part( 404 ); // you can write here the page to redirect if this don\'t work for you
if ($post->ID == "IDOFPOST1" || $post->ID == "IDOFPOST2"){ // you can add more id by adding || $post->ID == "IDOFPOST3" before )
wp_safe_redirect( $redirect_url, 302 );
exit;
}
}