jantanner

category listing

Dec 16th, 2011
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2.                         $terms = get_terms("tribe_events_cat");
  3.                         $count = count($terms);
  4.                         if ( $count > 0 ){
  5.                             echo "<ul>";
  6.                             foreach ( $terms as $term ) {
  7.                               echo "<li><a href='" .  get_site_url() . "/events/category/". $term->name." '>" . $term->name . "</a></li>";
  8.                
  9.                             }
  10.                             echo "</ul>";
  11.                         }
  12.                
  13.                     ?>
Advertisement
Add Comment
Please, Sign In to add comment