Return false from is_paged() if on the first page. Props Denis-de-Bernardy. fixes #11389
git-svn-id: https://develop.svn.wordpress.org/trunk@12372 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
68f8e4d036
commit
95f2058f8b
@ -1424,7 +1424,7 @@ class WP_Query {
|
||||
if ( '' != $qv['tb'] )
|
||||
$this->is_trackback = true;
|
||||
|
||||
if ( '' != $qv['paged'] )
|
||||
if ( '' != $qv['paged'] && ( intval($qv['paged']) > 1 ) )
|
||||
$this->is_paged = true;
|
||||
|
||||
if ( '' != $qv['comments_popup'] )
|
||||
|
Loading…
Reference in New Issue
Block a user