php 要在前面禁用自定义帖子类型的单个视图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 要在前面禁用自定义帖子类型的单个视图相关的知识,希望对你有一定的参考价值。

<?php
add_action( 'template_redirect', 'wpse_128636_redirect_post' );

function wpse_128636_redirect_post() {
  $queried_post_type = get_query_var('post_type');
  if ( is_single() && 'sample_post_type' ==  $queried_post_type ) {
    wp_redirect( home_url(), 301 );
    exit;
  }
}
?>

以上是关于php 要在前面禁用自定义帖子类型的单个视图的主要内容,如果未能解决你的问题,请参考以下文章