Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
Created May 7, 2015 14:56
Show Gist options
  • Save jamigibbs/ffc8f6a63f48ba73399f to your computer and use it in GitHub Desktop.
Save jamigibbs/ffc8f6a63f48ba73399f to your computer and use it in GitHub Desktop.
TEC: Change Results Title Text
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