LLMS_Abstract_Query::default_arguments()

Determines the default arguments for the query.


Description Description

Extending classes can override or extend this method to customize the default query arguments for the query.


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/abstracts/llms-abstract-query.php

	protected function default_arguments() {

		return array(
			'page'             => 1,
			'per_page'         => 10,
			'search'           => '',
			'sort'             => array(),
			'suppress_filters' => false,
			'no_found_rows'    => false,
		);

	}


Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.