是否有办法删除特定帖子上的永久链接?
理想情况下,应该有一个插件,使permalink在某些帖子上可选。
我知道有一个私人的选择。但这并不能解决我的问题,有些帖子只是为了嵌入,但不应该像它自己的页面那样被访问。
我想用404代替。
谢谢。
发布于 2018-06-29 10:01:14
如果您想将几个帖子重定向到404页面,那么您可以在您的子主题的functions.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;
}
}https://wordpress.stackexchange.com/questions/307291
复制相似问题