wp( string|array $query_vars = '' )

Set up the WordPress query.


Description Description


Parameters Parameters

$query_vars

(string|array) (Optional) Default WP_Query arguments.

Default value: ''


Top ↑

Source Source

File: wp-includes/functions.php

function wp( $query_vars = '' ) {
	global $wp, $wp_query, $wp_the_query;
	$wp->main( $query_vars );

	if ( ! isset( $wp_the_query ) ) {
		$wp_the_query = $wp_query;
	}
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.