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 11.0.1
protected function get_items_query_offset() {
global $wpdb;
return $wpdb->prepare( 'OFFSET %d', $this->get_items_offset() );
}