Created
May 26, 2014 13:44
-
-
Save ckpicker/2bf2f68517fb6237a4d3 to your computer and use it in GitHub Desktop.
Events Calendar 3.5 // Change 'Events' to 'Activities'
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
| // 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( $domain === 'tribe-events-calendar' ) { | |
| // The custom text you want instead | |
| $text = str_ireplace( "Events", "Activities", $text ); | |
| } | |
| return $text; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment