2010-07-02 57 views
0

我在尋找能夠檢查我們是否在wordpress頁面第一頁的內容。WordPress的is_first_page()或類似?

我現在的頁面看起來像這樣:

精選POST 六個最近期的博客。

問題是,當我去/頁/ 2我仍然得到特色的職位。我只希望它顯示在最前面的頁面上。

回答

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 
} 

希望有所幫助。

0

is_home()就是你要找的東西......如果你在主頁上,它會返回TRUE,如果你在任何其他頁面,則返回FALSE。

+0

不正確。 is_home()告訴你,如果你在主博客視圖和它的任何頁面。韋斯需要知道他是否在主博客視圖的第1頁。 is_home也會在第2頁返回true,所以對Wes幾乎沒有用處。 – 2010-07-03 13:40:41