WP_User_Query::set() WordPress Method

The WP_User_Query::set() method is used to modify the query used to fetch users. The query can be modified by passing in an array of arguments to the method. These arguments can be used to change the fields that are returned, the order in which the users are returned, and the number of users to return.

WP_User_Query::set( string $query_var, mixed $value ) #

Sets query variable.


Parameters

$query_var

(string)(Required)Query variable key.

$value

(mixed)(Required)Query variable value.


Top ↑

Source

File: wp-includes/class-wp-user-query.php

	public function set( $query_var, $value ) {
		$this->query_vars[ $query_var ] = $value;
	}

Top ↑

Changelog

Changelog
VersionDescription
3.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.