Advertisement
srikat

Untitled

Jan 13th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. $terms = get_terms( 'portfolio_category' );
  2.  
  3. $count = count( $terms );
  4.  
  5. $i = 0;
  6.  
  7. if ( $count > 0 ) { ?>
  8.     <ul id="portfolio-cats" class="clearfix">
  9.         <?php foreach ($terms as $term ) : ?>
  10.             <li>
  11.                 <a href="#"><?php echo $term->name; ?></a>
  12.             </li>
  13.         <?php endforeach; ?>
  14.     </ul><!-- /portfolio-cats -->
  15. <?php }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement