WP_Sitemaps_Posts::__construct() WordPress Method

The WP_Sitemaps_Posts::__construct() method is used to create a new WP_Sitemaps_Posts object. This object can be used to generate a sitemap for a WordPress website.

WP_Sitemaps_Posts::__construct() #

WP_Sitemaps_Posts constructor.


Source

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

	public function __construct() {
		$this->name        = 'posts';
		$this->object_type = 'post';
	}


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.