# bbp-core/trunk/templates/form-user-roles.php

Forumax – AI Powered Advanced Community Forum Plugin, version trunk. 23 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/trunk/code/templates/form-user-roles.php
- Raw: https://pluginprobe.com/plugins/bbp-core/trunk/raw/templates/form-user-roles.php
- Modified: 2026-01-28T15:54:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bbp-core/trunk/code/templates/form-user-roles.php#L10-L20`.

```php
<?php

/**
 * User Roles Profile Edit Part
 *
 * @package bbPress
 * @subpackage Theme
 */

// Exit if accessed directly
defined( 'ABSPATH' ) || exit;
?>

<div class="frmx-row frmx-gap-3">
    <div class="frmx-col-md-6">
        <?php bbp_edit_user_blog_role(); ?>
    </div>

    <div class="frmx-col-md-6">
        <?php bbp_edit_user_forums_role(); ?>
    </div>
</div>

```
