Skip to content

Instantly share code, notes, and snippets.

@elimn
Last active August 29, 2015 14:09
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/b57ef3d39837d8c6af45 to your computer and use it in GitHub Desktop.
Save elimn/b57ef3d39837d8c6af45 to your computer and use it in GitHub Desktop.
MT | TEC | Change all events to display as all day events
<?php
// Changes all events to display as all day events
function tribe_all_events_all_day ($output) {
if ( !is_admin() && tribe_is_event() ) {
$output = true;
}
return $output;
}
add_filter('tribe_event_is_all_day', 'tribe_all_events_all_day');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment