Created
February 13, 2015 16:19
-
-
Save BoweFrankema/d33ca2cb3a75446c8b81 to your computer and use it in GitHub Desktop.
Translate BuddyPress Widgets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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