diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 7a2481f6f..0b39a8647 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -1528,7 +1528,7 @@ function get_next_posts_link( $label = 'Next Page »', $max_page = 0 ) { $nextpage = intval($paged) + 1; - if ( !is_single() && ( empty($paged) || $nextpage <= $max_page) ) { + if ( !is_single() && ( $nextpage <= $max_page ) ) { $attr = apply_filters( 'next_posts_link_attributes', '' ); return '" . preg_replace('/&([^#])(?![a-z]{1,8};)/i', '&$1', $label) . ''; }