Skip to content

Instantly share code, notes, and snippets.

@pbrocks
Last active February 7, 2017 18:04
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/8201532ccffc3da591d1f177bbe8d4ea to your computer and use it in GitHub Desktop.
Save pbrocks/8201532ccffc3da591d1f177bbe8d4ea to your computer and use it in GitHub Desktop.
add_filter( 'bp_get_directory_title', 'change_activity_title' );
function change_activity_title( $data ) {
if ( 'Sitewide Activity' === $data ) {
$data = 'Name';
}
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment