当前位置: 代码迷 >> Web前端 >> Wordpress 判断是不是为首页
  详细解决方案

Wordpress 判断是不是为首页

热度:827   发布时间:2012-09-05 15:19:35.0
Wordpress 判断是否为首页

在相应文件里加上:

<?php if(is_home() && !is_paged()):?>  
处理语句
<?php endif;?>
  相关解决方案