LLMS_Awards_Query::get_arg_map()

Map input arguments to WP_Query arguments.


Return Return

(array)


Top ↑

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

	}


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.