ActionScheduler_Abstract_ListTable::get_items_query_offset()protectedWC 1.0

Get prepared OFFSET clause for items query

Method of the class: ActionScheduler_Abstract_ListTable{}

No Hooks.

Return

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() code WC 8.7.0

protected function get_items_query_offset() {
	global $wpdb;

	return $wpdb->prepare( 'OFFSET %d', $this->get_items_offset() );
}