WP_Rewrite::__construct() WordPress Method

The WP_Rewrite::__construct() method initializes the class by setting up the default variables, including the $this->rewritecode and $this->rewritereplace arrays. It also calls the init() method, which sets up the $this->rules variable and adds the default rewrite rules.

WP_Rewrite::__construct() #

Constructor – Calls init(), which runs setup.


Source

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

	public function __construct() {
		$this->init();
	}


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.