Skip to content

Instantly share code, notes, and snippets.

@pbrocks
Last active September 20, 2016 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pbrocks/93c2a278a04216e3539df7378744c041 to your computer and use it in GitHub Desktop.
Save pbrocks/93c2a278a04216e3539df7378744c041 to your computer and use it in GitHub Desktop.
Change Name of BP Activity Stream
function change_buddypress_activity_title( $title ) {
if ( __( 'Site-Wide Activity', 'text-domain' ) === $title ) {
$title = __( 'Latest and Greatest News', 'text-domain' );
}
return $title;
}
@pbrocks
Copy link
Author

pbrocks commented Sep 20, 2016

add_filter( 'bp_get_directory_title', 'change_buddypress_activity_title', 987 );

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