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;
}
Changelog
Version | Description |
---|---|
WP-2.1.0 | Introduced. |