Skip to content

Instantly share code, notes, and snippets.

@deckerweb
Created September 7, 2012 10:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deckerweb/3664958 to your computer and use it in GitHub Desktop.
Save deckerweb/3664958 to your computer and use it in GitHub Desktop.
bbPress: Change Forums Archive Title - When in Forums Archive & within Breadcrumbs Display
<?php
add_filter( 'bbp_get_forum_archive_title', 'ddw_bbpress_change_forum_archive_title' );
/**
* Change Forums Archive Title in bbPress 2.x plugin version.
*
* Changes the title on Forums Archive page (forums parent page).
* NOTE: Also changes the title in the breadcrumbs display to the same value!
*
* @author David Decker - DECKERWEB
* @link http://deckerweb.de
* @link http://twitter.com/deckerweb
*/
function ddw_bbpress_change_forum_archive_title() {
return 'Your Forums Archive Title Here';
}
@JenniferPiper
Copy link

Thank you for this! Solved my problem.

@WASasquatch
Copy link

This doesn't work on latest WP, is there a fix?

@afalconr
Copy link

afalconr commented Sep 7, 2020

This doesn't work on latest WP, is there a fix?

Same here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment