skip to Main Content

WordPress Code Snippets


How to Disable bbPress Forum Replies

If you want to disable replies in specific bbPress forums, use the following code snippet. This will allow you to control which forums permit replies:

<?php
function disable_forum_replies( $forum_id ) {
    if ( $forum_id == 5 ) { // Replace with your forum ID
        return false;
    }
    return true;
}
add_filter( 'bbp_allow_reply', 'disable_forum_replies' );

This code will disable replies in forum ID 5. You can change the ID to match the forum you want to restrict, while keeping replies active in other forums.

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