WP_Query::is_paged()
Determines whether the query is for a paged result and not for the first page.
Method of the class: WP_Query{}
No Hooks.
Return
true|false
. Whether the query is for a paged result.
Usage
global $wp_query; $wp_query->is_paged();
Changelog
Since 3.1.0 | Introduced. |
WP_Query::is_paged() WP Query::is paged code WP 6.4.1
public function is_paged() { return (bool) $this->is_paged; }