LLMS_Database_Query::sql_limit()
Retrieve the prepared SQL for the LIMIT clause
Description Description
Return Return
(string)
Source Source
File: includes/abstracts/abstract.llms.database.query.php
protected function sql_limit() { global $wpdb; $sql = $wpdb->prepare( 'LIMIT %d, %d', $this->get_skip(), $this->get( 'per_page' ) ); return apply_filters( $this->get_filter( 'limit' ), $sql, $this ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.16.0 | Introduced. |