Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created April 2, 2014 12:54
Show Gist options
  • Save ckpicker/9933505 to your computer and use it in GitHub Desktop.
Save ckpicker/9933505 to your computer and use it in GitHub Desktop.
Events Calendar 3.5 // Modify widget footer text
// See the codex to learn more about WP text domains:
// http://codex.wordpress.org/Translating_WordPress#Localization_Technology
// Example Tribe domains: 'tribe-events-calendar', 'tribe-events-calendar-pro'...
add_filter('gettext', 'theme_filter_text', 10, 3);
function theme_filter_text( $translations, $text, $domain ) {
// Copy and modify the following if {} statement to replace multiple blocks of text
// Match the text you want you want to translate, preferably also match the text domain
if($text === 'View All Events in Category' && $domain === 'tribe-events-calendar') {
// The custom text you want instead
$text = 'my custom text';
}
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment