Advertisement
Guest User

Untitled

a guest
Jan 13th, 2014
1,433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. add_filter('tribe_event_is_all_day', 'all_day_enforced_field');
  2.  
  3. function all_day_enforced_field ($output ) {
  4.  
  5.     if ( !is_admin() && tribe_is_event() ) {
  6.         $output = true;
  7.     }
  8.  
  9.     return $output;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement