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

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,
    );
 
}


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.