Skip to content

Instantly share code, notes, and snippets.

@geoffgraham
Created December 5, 2014 17:05
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 geoffgraham/33da9072d9a3a8206f99 to your computer and use it in GitHub Desktop.
Save geoffgraham/33da9072d9a3a8206f99 to your computer and use it in GitHub Desktop.
Events Calendar // Translate Text by Domain
add_filter('gettext', 'theme_filter_text', 10, 3);
function theme_filter_text( $translations, $text, $domain ) {
if($text === 'Text to Replace' && $domain === 'tribe-events-calendar') {
$text = 'Text to Use Instead';
}
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment