LLMS_Awards_Query::get_arg_map()
Map input arguments to WP_Query arguments.
Return Return
(array)
Source Source
File: includes/class-llms-awards-query.php
protected function get_arg_map() {
$map = parent::get_arg_map();
return array_merge(
$map,
array(
'users' => 'author__in',
'users__exclude' => 'author__not_in',
'templates' => 'post_parent__in',
'templates__exclude' => 'post_parent__not_in',
)
);
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |