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
164 165 166 167 168 169 170 171 172 173 174 175 | 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. |