Skip to content

Instantly share code, notes, and snippets.

@BoweFrankema
Created February 13, 2015 16: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 BoweFrankema/d33ca2cb3a75446c8b81 to your computer and use it in GitHub Desktop.
Save BoweFrankema/d33ca2cb3a75446c8b81 to your computer and use it in GitHub Desktop.
Translate BuddyPress Widgets
//Translate BuddyPress Widgets
function cfc_widget_title( $title ) {
if ( $title == "Members") {
$title = __('Members Translation', 'cfctranslation') ;
}
return $title;
}
add_filter ( 'widget_title' , 'cfc_widget_title', 21 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment