Advertisement
BakerMan

Wrap the tribe bar in an extra div

Sep 18th, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_action('tribe_events_bar_before_template', 'tribe_bar_open_extra_div');
  2. add_action('tribe_events_bar_after_template', 'tribe_bar_close_extra_div');
  3.  
  4. function tribe_bar_open_extra_div() { echo '<div id="your-custom-wrapper">'; }
  5. function tribe_bar_close_extra_div() { echo '</div> <!-- #your-custom-wrapper -->'; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement