Guest User

Untitled

a guest
Nov 9th, 2015
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function addingCalendarWrapper()
  2. {
  3. if(tribe_is_month())
  4. {
  5. echo '<div class="calendarwrapper">';
  6. }
  7. }
  8. add_action('tribe_events_before_the_grid', 'addingCalendarWrapper');
  9.  
  10.  
  11. function closingCalendarWrapper()
  12. {
  13. if(tribe_is_month())
  14. {
  15. echo '</div>';
  16. }
  17. }
  18. add_action('tribe_events_after_the_grid', 'closingCalendarWrapper', 500);
Advertisement
Add Comment
Please, Sign In to add comment