Advertisement
BakerMan

Force full-wdth (TEC 2.0.11) trick

Jun 27th, 2013
106
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('body_class', 'full_width_events', 50);
  2.  
  3. function full_width_events(array $classes) {
  4.     if (tribe_is_event() and !in_array('full-width', $classes)) $classes[] = 'full-width';
  5.     return $classes;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement