Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created August 2, 2013 21:45
Show Gist options
  • Save ckpicker/6143707 to your computer and use it in GitHub Desktop.
Save ckpicker/6143707 to your computer and use it in GitHub Desktop.
Change the 'My Events' title on the Community Events Listing Page
add_action('tribe_ce_event_list_page_title', 'change_the_title', 10);
function change_the_title() {
return 'New Title';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment