populate_roles_270() WordPress Function

This function is used to populate the roles for a WordPress site. It is called by the WordPress core when a new site is created. It is also used to populate the roles for a new user when they are added to a site.

populate_roles_270() #

Create and modify WordPress roles for WordPress 2.7.


Source

File: wp-admin/includes/schema.php

function populate_roles_270() {
	$role = get_role( 'administrator' );

	if ( ! empty( $role ) ) {
		$role->add_cap( 'install_plugins' );
		$role->add_cap( 'update_themes' );
	}
}


Top ↑

Changelog

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