Wordpress is_first_page()还是类似的?

时间:2010-07-02 18:03:47

标签: wordpress

我正在寻找能够检查我们是否在wordpress页面的第一页上的内容。

我当前的页面如下所示:

特色帖子 六个最近的博客。

问题是,当我转到/ page / 2时,我仍然会收到精选帖子。我希望它只出现在头版。

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。