Advertisement
Guest User

Untitled

a guest
Jun 10th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <!-- Find the following line in your custom events/single.php template -->#
  2. <div class="navlink tribe-previous"><?php tribe_previous_event_link(); ?></div>
  3.  
  4. <!-- Change it to the following -->
  5. <div class="navlink tribe-previous">
  6.     <?php
  7.     ob_start();
  8.     tribe_previous_event_link();
  9.     $prev_event = trim(ob_get_clean());
  10.  
  11.     echo $prev_event;
  12.     if (!empty($prev_event)) echo ' | ';
  13.     ?>
  14. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement