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)


Top ↑

Source Source

File: includes/abstracts/abstract.llms.database.query.php

	protected function get_skip() {
		return absint( ( $this->get( 'page' ) - 1 ) * $this->get( 'per_page' ) );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.