WP_Query::is_paged() WordPress Method

The WP_Query::is_paged() method is used to check if a query is paged. A paged query is one that is divided into multiple pages, with each page containing a certain number of results. This method returns a boolean value of true if the query is paged, or false if it is not.

WP_Query::is_paged() #

Is the query for a paged result and not for the first page?


Return

(bool) Whether the query is for a paged result.


Top ↑

Source

File: wp-includes/class-wp-query.php

	public function is_paged() {
		return (bool) $this->is_paged;
	}


Top ↑

Changelog

Changelog
VersionDescription
3.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More