Advertisement
BakerMan

Tribe "before HTML" on month view only

Oct 22nd, 2013
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. add_filter('tribe_events_before_html', 'tribe_before_html_month_view_only');
  2.  
  3. function tribe_before_html_month_view_only($html) {
  4.     if (tribe_is_month()) return $html;
  5.     return '';
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement