Skip to content

Instantly share code, notes, and snippets.

@elimn
Forked from kelly-tribe/alter-or-remove-heading.php
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elimn/19c7b9e7041fc4e6ca73 to your computer and use it in GitHub Desktop.
Save elimn/19c7b9e7041fc4e6ca73 to your computer and use it in GitHub Desktop.
MT | TEC | Change Upcoming Events Title
<?php
add_filter('tribe_get_events_title', 'change_upcoming_events_title');
function change_upcoming_events_title($title) {
//We'll change the title on upcoming and map views
if (tribe_is_upcoming() or tribe_is_map() or tribe_is_photo()) return 'Upcoming Parties';
//In all other circumstances, leave the original title in place
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment