WP_Sitemaps::__construct() WordPress Method

The WP_Sitemaps::__construct() method initializes a new sitemaps object.

WP_Sitemaps::__construct() #

WP_Sitemaps constructor.


Source

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

	public function __construct() {
		$this->registry = new WP_Sitemaps_Registry();
		$this->renderer = new WP_Sitemaps_Renderer();
		$this->index    = new WP_Sitemaps_Index( $this->registry );
	}


Top ↑

Changelog

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