LLMS_Abstract_Query::is_last_page()
Determine if we’re on the last page of results.
Return Return
(boolean)
Source Source
File: includes/abstracts/llms-abstract-query.php
415 416 417 | public function is_last_page() { return ! $this ->has_results() || ( absint( $this ->get( 'page' ) ) === $this ->max_pages ); } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Moved from LLMS_Database_Query abstract. |
3.8.0 | |
3.30.3 | Introduced. |