LLMS_Database_Query::get_skip()
Get the number of results to skip for the query based on the current page and per_page vars.
Return Return
(int)
Source Source
File: includes/abstracts/abstract.llms.database.query.php
protected function get_skip() { return absint( ( $this->get( 'page' ) - 1 ) * $this->get( 'per_page' ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |