bbp_remove_roles()

Removes bbPress-specific user roles from the wp_user_roles array.


Description Description

This is currently only used when updating, uninstalling, or resetting bbPress.

See also See also


Top ↑

Source Source

File: includes/core/capabilities.php

function bbp_remove_roles() {

	// Remove the bbPress roles
	foreach ( array_keys( bbp_get_dynamic_roles() ) as $bbp_role ) {
		remove_role( $bbp_role );
	}

	// Some early adopters may have a deprecated visitor role. It was later
	// replaced by the Spectator role.
	remove_role( 'bbp_visitor' );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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