WP_Roles::__construct( int $site_id = null )

Constructor


Description Description


Parameters Parameters

$site_id

(int) (Optional) Site ID to initialize roles for. Default is the current site.

Default value: null


Top ↑

Source Source

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

	public function __construct( $site_id = null ) {
		global $wp_user_roles;

		$this->use_db = empty( $wp_user_roles );

		$this->for_site( $site_id );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.9.0 The $site_id argument was added.
2.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.