bbp_add_caps()
Adds capabilities to WordPress user roles.
Description
Source
File: bp-forums/core/capabilities.php
function bbp_add_caps() { // Loop through available roles and add caps foreach ( bbp_get_wp_roles()->role_objects as $role ) { foreach ( bbp_get_caps_for_role( $role->name ) as $cap => $value ) { $role->add_cap( $cap, $value ); } } do_action( 'bbp_add_caps' ); }
Changelog
Version | Description |
---|---|
bbPress (r2608) | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.