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
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' ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |