Last active
September 17, 2015 18:23
-
-
Save elimn/48b04dc1754bd99e91ad to your computer and use it in GitHub Desktop.
MT | TEC | Change the wording of any bit of text in WordPress
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
<?php | |
/* | |
* EXAMPLE OF CHANGING ANY TEXT (STRING) IN THE EVENTS CALENDAR | |
* 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'... | |
*/ | |
function tribe_custom_theme_text ( $translations, $text, $domain ) { | |
// Put your custom text here in a key => value pair | |
// Example: 'Text you want to change' => 'This is what it will be changed to' | |
// The text you want to change is the key, and it is case-sensitive | |
// The text you want to change it to is the value | |
// You can freely add or remove key => values, but make sure to separate them with a comma | |
// This example changes the label "Venue" to "Location", and "Related Events" to "Similar Events" | |
$custom_text = array( | |
'Venue' => 'Location', | |
'Related Events' => 'Similar Events', | |
); | |
// If this text domain starts with "tribe-", and we have replacement text | |
if(strpos($domain, 'tribe-') === 0 && array_key_exists($text, $custom_text) ) { | |
$text = $custom_text[$text]; | |
} | |
return $text; | |
} | |
add_filter('gettext', 'tribe_custom_theme_text', 20, 3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment