Advertisement
brook-tribe

Change Translation Text

Jan 28th, 2014
1,193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.80 KB | None | 0 0
  1. // This snippet is now hosted here: https://gist.github.com/elimn/48b04dc1754bd99e91ad
  2.  
  3. // See the codex to learn more about WP text domains:
  4. // http://codex.wordpress.org/Translating_WordPress#Localization_Technology
  5. // Example Tribe domains: 'tribe-events-calendar', 'tribe-events-calendar-pro'...
  6.  
  7. add_filter('gettext', 'theme_filter_text', 10, 3);
  8.  
  9. function theme_filter_text( $translations, $text, $domain ) {
  10.  
  11.     // Copy and modify the following if {} statement to replace multiple blocks of text
  12.     // Match the text you want you want to translate, preferably also match the text domain
  13.         if($text === 'View All Events in Category' && $domain === 'tribe-events-calendar') {
  14.  
  15.         // The custom text you want instead
  16.                 $text = 'my custom text';
  17.  
  18.         }
  19.  
  20.         return $text;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement