我正在寻找能够检查我们是否在wordpress页面的第一页上的内容。
我当前的页面如下所示:
特色帖子 六个最近的博客。
问题是,当我转到/ page / 2时,我仍然会收到精选帖子。我希望它只出现在头版。
答案 0 :(得分:0)
使用get_query_var()
:
if(get_query_var('page')==1 && is_home()){
// you're on the first page of the blog
} else {
// you're either not on the blog or not on the first page of the blog
}
希望有所帮助。
答案 1 :(得分:0)
is_home()就是您正在寻找的......如果您在主页上,则返回TRUE,如果您在任何其他页面上,则返回FALSE。