Get Rid of bbPress Breadcrumbs
25
March
Just add the following snippet to your functions.php:
function custom_bbp_no_breadcrumb ($param) {
return true;
}
add_filter ('bbp_no_breadcrumb', 'custom_bbp_no_breadcrumb');
No comments yet.