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
See also
- do_paging(): Builds paging text.
Return
(bool)
Source
File: wp-admin/includes/deprecated.php
function results_are_paged() { if ( $this->paging_text ) return true; return false; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |