How to disable bbPress breadcrumbs

bbPress doesn’t offer an option to disable the breadcrumb navigation, but we can easily do it with a single line of code. Add this to your functions.php or to a simple plugin to turn off bbPress breadcrumbs.

add_filter( 'bbp_no_breadcrumb', '__return_true' );

Leave a Reply