populate_roles_230() WordPress Function

The populate_roles_230() function is used to populate the roles for a user. This function is typically used when a user registers for a new account.

populate_roles_230() #

Create and modify WordPress roles for WordPress 2.3.


Source

File: wp-admin/includes/schema.php

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

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


Top ↑

Changelog

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