我在index.php文件中经常看到以下代码。我了解is_front_page()
在查看网站首页(无论显示博客帖子索引还是静态页面)时is_home()
返回true ,而在查看博客帖子索引(无论显示在首页还是静态页面上)时返回true。对于以下代码的使用,我仍然有些困惑-
<?php if ( have_posts() ) : ?>
<?php if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php endif; ?>
对于为什么这段代码如此受欢迎的任何解释,都将受到赞赏。