WP_User_Search::results_are_paged() WordPress Method

The WP_User_Search::results_are_paged() method is used to determine whether the search results are paged. This can be useful for displaying a message to the user that there are more results available than what is currently being displayed.

WP_User_Search::results_are_paged() #

Whether paging is enabled.


Description

Top ↑

See also


Top ↑

Return

(bool)


Top ↑

Source

File: wp-admin/includes/deprecated.php

	function results_are_paged() {
		if ( $this->paging_text )
			return true;
		return false;
	}

Top ↑

Changelog

Changelog
VersionDescription
2.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