Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的首页只是按类别分隔的帖子列表。我正在开发一个获取帖子ID但需要测试用户当前是否在首页上的插件:
if(is_front_page()){ do this thing } else { do this other thing }
问题是,在帖子页面上它为 is_front_page 返回 true。我尝试了 is_home 但得到了相同的结果。
事实证明,由于页脚中的插件输出我只需要重置查询: wp_reset_query();