首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >删除某些职位的Permalink

删除某些职位的Permalink
EN

WordPress Development用户
提问于 2018-06-29 07:39:41
回答 1查看 54关注 0票数 0

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

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

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

我想用404代替。

谢谢。

EN

回答 1

WordPress Development用户

发布于 2018-06-29 10:01:14

如果您想将几个帖子重定向到404页面,那么您可以在您的子主题的functions.php中使用以下片段。

代码语言:javascript
复制
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;
    }
}
票数 0
EN
页面原文内容由WordPress Development提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://wordpress.stackexchange.com/questions/307291

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档