Advertisement
brook-tribe

Force all events to display as All Day Events

Jan 28th, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. // Snippet now hosted here: https://gist.github.com/elimn/b57ef3d39837d8c6af45
  2.  
  3. add_filter('tribe_event_is_all_day', 'all_day_enforced_field');
  4.  
  5. function all_day_enforced_field ($output ) {
  6.  
  7.         if ( !is_admin() && tribe_is_event() ) {
  8.                 $output = true;
  9.         }
  10.  
  11.         return $output;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement