skip to Main Content

WordPress Code Snippets


How to Add Custom bbPress Forum Moderators

If you want to add custom moderators to your bbPress forums, use the following PHP code snippet:

<?php
function add_custom_moderators( $forum_id ) {
    $moderator_user_id = 1; // Replace with the user ID of the moderator
    bbp_add_forum_moderator( $forum_id, $moderator_user_id );
}
add_action( 'bbp_new_forum', 'add_custom_moderators' );
?>

This code will automatically assign moderators to newly created forums by specifying their user ID. Replace 1 with the actual user ID of the moderator you wish to assign.

I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Best WordPress Hosting
Back To Top