Advertisement
BakerMan

Conditional Check for Single Events

Oct 11th, 2012
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. // Are we looking at a single event page?
  2. // If so, use the page-sidebar-right template instead
  3. if (tribe_is_event() and is_single()) {
  4.     get_template_part('page-sidebar-right');
  5.     return;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement