删除某些帖子的固定链接

时间:2018-06-29 作者:mogio

有没有办法删除特定帖子上的永久链接?

理想情况下,应该有一个插件,使permalink在某些帖子上成为可选的。

我知道有一个私人选择。但这并不能解决我的问题,有些帖子只是为了嵌入,但由于是自己的页面,所以不应该访问。

我想开一辆404。

非常感谢。

1 个回复
SO网友:Akshat

如果您想将一些帖子重定向到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;
    }
}

结束