2

我的首页只是按类别分隔的帖子列表。我正在开发一个获取帖子ID但需要测试用户当前是否在首页上的插件:

if(is_front_page()){
     do this thing
}
else {
     do this other thing
}

问题是,在帖子页面上它为 is_front_page 返回 true。我尝试了 is_home 但得到了相同的结果。

4

1 回答 1

2

事实证明,由于页脚中的插件输出我只需要重置查询: wp_reset_query();

于 2013-10-21T17:11:38.150 回答