由于您正在链接到外部新闻文章,因此希望阻止用户访问/news-article/article-title/
为新帖子创建的url没有真实内容?
您可以这样做:How to disable the single view for a custom post type?
下面的代码就是这个答案。将其添加到您的函数中。php,确保更改news_article
到实际的柱式段塞。这将301重定向试图点击该帖子的用户。您可能希望首先使用302来测试这一点,因为许多浏览器都会缓存301,并且很难清除。
它defaults 到302,因此删除, 301
如果要尝试使用302,请将其设置为默认值。
add_action( \'template_redirect\', \'news_article_redirect\' );
function news_article_redirect() {
$queried_post_type = get_query_var(\'news_article\');
if ( is_single() && \'news_article\' == $queried_post_type ) {
wp_redirect( home_url(), 301 );
exit;
}
}