Created
May 7, 2015 14:56
-
-
Save jamigibbs/ffc8f6a63f48ba73399f to your computer and use it in GitHub Desktop.
TEC: Change Results Title Text
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
add_filter( 'gettext', 'events_to_new_title' ); | |
function events_to_new_title( $txt ) { | |
if ( class_exists( 'TribeEvents' ) ) { | |
return str_replace( 'Events for', 'New Title Text', $txt ); | |
} | |
return $txt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment