WP_Sitemaps_Users::__construct() WordPress Method

The WP_Sitemaps_Users::__construct() function initializes the class by setting up the properties required for the sitemap functionality. It also includes the necessary files and sets up the hooks for the sitemaps.

WP_Sitemaps_Users::__construct() #

WP_Sitemaps_Users constructor.


Source

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

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


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.