Skip to content

Instantly share code, notes, and snippets.

@Bradley-D
Last active August 29, 2015 13:56
Show Gist options
  • Save Bradley-D/9154904 to your computer and use it in GitHub Desktop.
Save Bradley-D/9154904 to your computer and use it in GitHub Desktop.
/**
** Rename name of Black Studio Tiny MCE
**/
function change_tinymce_widget_title( $translation, $text, $domain ) {
if ( $text == 'Black Studio TinyMCE' )
$translation = 'Text - Visual Editor';
return $translation;
}
add_filter( 'gettext', 'change_tinymce_widget_title', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment