WP::main()publicWP 2.0.0

Sets up all of the variables required by the WordPress environment.

The action wp has one parameter that references the WP object. It allows for accessing the properties and methods to further manipulate the object.

Method of the class: WP{}

Hooks from the method

Return

null. Nothing (null).

Usage

global $wp;
$wp->main( $query_args );
$query_args(string|array)
Passed to parse_request().
Default: ''

Changelog

Since 2.0.0 Introduced.

WP::main() code WP 6.5.2

public function main( $query_args = '' ) {
	$this->init();

	$parsed = $this->parse_request( $query_args );

	if ( $parsed ) {
		$this->query_posts();
		$this->handle_404();
		$this->register_globals();
	}

	$this->send_headers();

	/**
	 * Fires once the WordPress environment has been set up.
	 *
	 * @since 2.1.0
	 *
	 * @param WP $wp Current WordPress environment instance (passed by reference).
	 */
	do_action_ref_array( 'wp', array( &$this ) );
}