ActionScheduler_Abstract_ListTable::get_items_query_limit()
Get prepared LIMIT clause for items query
Method of the class: ActionScheduler_Abstract_ListTable{}
No Hooks.
Return
String
. Prepared LIMIT clause for items query.
Usage
// protected - for code of main (parent) or child class $result = $this->get_items_query_limit();
Notes
- Global. wpdb. $wpdb
ActionScheduler_Abstract_ListTable::get_items_query_limit() ActionScheduler Abstract ListTable::get items query limit code WC 9.2.3
protected function get_items_query_limit() { global $wpdb; $per_page = $this->get_items_per_page( $this->get_per_page_option_name(), $this->items_per_page ); return $wpdb->prepare( 'LIMIT %d', $per_page ); }