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');
sayantan
April 2nd, 2017 at 3:30 pm
where do you put this code?
functions.php
Isabel
April 3rd, 2017 at 3:31 pm
Hi. See How To Add Code. Hope that helps.