php – wordpress is_home()|| is_index()可能吗?

前端之家收集整理的这篇文章主要介绍了php – wordpress is_home()|| is_index()可能吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的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

猜你在找的PHP相关文章