LLMS_Abstract_Posts_Query::get_arg_map()
Map input arguments to WP_Query arguments.
Return Return
(array)
Source Source
File: includes/abstracts/llms-abstract-posts-query.php
protected function get_arg_map() { return array( 'page' => 'paged', 'per_page' => 'posts_per_page', 'post_types' => 'post_type', 'search' => 's', 'sort' => 'orderby', 'status' => 'post_status', ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |