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.
Return Return
(array)
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, ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |