Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Created April 1, 2012 00:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jo-snips/2269952 to your computer and use it in GitHub Desktop.
Save jo-snips/2269952 to your computer and use it in GitHub Desktop.
The Events Calendar: WooThemes Doc Title Filter
add_filter('woo_title', 'events_page_title');
function events_page_title( $title ) {
if ( is_single() && !tribe_is_showing_all() ) { // single event
$title = get_the_title();
} elseif ( tribe_is_upcoming() || tribe_is_past() || tribe_is_day() || (is_single() && tribe_is_showing_all()) ) { // list view
$title = "Upcoming Events List";
} else { // grid view
$title = "Calendar of Events";
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment