WP_Query::set() WordPress Method

The WP_Query::set() method is used to set query variables for use in WP_Query::query(). Query variables are set as an array of key => value pairs. For example: $query->set( 'post_type', 'page' ); The above would set the post_type query variable to "page".

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

Sets the value of a query variable.


Parameters

$query_var

(string)(Required)Query variable key.

$value

(mixed)(Required)Query variable value.


Top ↑

Source

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

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


Top ↑

Changelog

Changelog
VersionDescription
1.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.