ActionScheduler_Abstract_ListTable::get_items_query_offset
Get prepared OFFSET clause for items query
Method of the class: ActionScheduler_Abstract_ListTable{}
No Hooks.
Returns
String. Prepared OFFSET clause for items query.
Usage
// protected - for code of main (parent) or child class $result = $this->get_items_query_offset();
Notes
- Global. wpdb.
$wpdb
ActionScheduler_Abstract_ListTable::get_items_query_offset() ActionScheduler Abstract ListTable::get items query offset code WC 10.8.1
protected function get_items_query_offset() {
global $wpdb;
return $wpdb->prepare( 'OFFSET %d', $this->get_items_offset() );
}