Wordpress is_home()无效

时间:2015-08-14 08:00:50

标签: php wordpress

我想在主页上制作背景颜色是透明的,而在其他页面背景是蓝色的。 enter image description here 我使用is_home()函数但无法工作。这是我的代码

<?php
        if(is_home()){
            // we are on the home page
            echo '<header id="masthead" class="site-hulu" role="banner">';
        }else {
            echo '<header id="masthead" class="site-header" role="banner">';
        }
    ?>

如何解决它的问题?在此之前,感谢您的帮助

1 个答案:

答案 0 :(得分:0)

我建议使用is_front_page()代替

具体见https://codex.wordpress.org/Function_Reference/is_home

  

博客帖子索引与网站首页   自从WordPress 2.1引入静态首页功能以来,博客文章索引和网站首页被视为两个不同的查询上下文,is_home()应用于博客帖子索引,is_front_page()应用于网站前端页。