我试图在某些页面上不显示页面标题,包括主页、自定义帖子类型页面和类别页面(/类别/博客)。我想到了这个,它对除了博客页面以外的一切都有效。
if ( !is_front_page() && !is_post_type_archive(\'location\') && !is_page_template(\'category-blog.php\')) :
<div class="page-title">
<div class="row">
<div class="col-sm-5 col-sm-offset-3"><h1><?php the_title(); ?></h1></div>
</div><!-- /row -->
</div><!-- /title -->
endif;