我在我的header.
PHP中有一个测试,看看我们是否在家里展示英雄.
<?PHP if ( is_home() && have_posts() ) : ?>
<div id="hero" class="inner clearfix">
...
</div>
<?PHP endif ?>
但是当用户登陆index.PHP时,英雄没有被显示.
显然没有is_index()条件,有没有人知道如何测试它的主页或索引?
试试is_front_page()
<?PHP if ( is_home() || is_front_page() ) : ?>
<div id="hero" class="inner clearfix">
...
</div>
<?PHP endif ?>
如果你是站点的绝对根,那应该返回true.
原文链接:https://www.f2er.com/php/135876.html