LLMS_Database_Query::sql_limit()
Retrieve the prepared SQL for the LIMIT clause.
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' ) ); /** * Filters the query LIMIT clause. * * The dynamic part of the filter `$this->id` identifies the extending query. * * @since 3.16.0 * * @param string $sql The LIMIT clause of the query. * @param LLMS_Database_Query $db_query The LLMS_Database_Query instance. */ return apply_filters( "llms_{$this->id}_query_limit", $sql, $this ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.5.1 | Drop use of $this->get_filter('limit') in favor of "llms_{$this->id}_query_limit" . |
3.16.0 | Introduced. |