WC_Admin_Log_Table_List::get_items_query_offset()protectedWC 1.0

Get prepared OFFSET clause for items query

Method of the class: WC_Admin_Log_Table_List{}

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

WC_Admin_Log_Table_List::get_items_query_offset() code WC 8.7.0

protected function get_items_query_offset() {
	global $wpdb;

	$per_page     = $this->get_items_per_page(
		self::PER_PAGE_USER_OPTION_KEY,
		$this->get_per_page_default()
	);
	$current_page = $this->get_pagenum();
	if ( 1 < $current_page ) {
		$offset = $per_page * ( $current_page - 1 );
	} else {
		$offset = 0;
	}

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