Change bbPress Forum Base Title in Breadcrumb

This filter and function lets you change the base title in the bbPress breadcrumb from “Forums” to whatever you like. In the example below, I change the title to “Support”. Replace “Support” with your own title.


// bbPress, change Forum base title in bbpress breadcrumb from 'forums' to 'support'

function isa_custom_forum_title() {

     return 'Support';
}

add_filter('bbp_get_forum_archive_title', 'isa_custom_forum_title');

See more:

We've 2 Responses

Questions and Comments are Welcome

Your email address will not be published. All comments will be moderated.

Please wrap code in "code" bracket tags like this:

[code]

YOUR CODE HERE 

[/code]