Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php if($IM_IN_A_CATEGORY){ ?>
  2. <div class="sidebarbox">
  3. <h3><?php echo $title;?></h3>
  4. <ul>
  5. <?php foreach($categories as $category): ?>
  6. <li>
  7. <a href="<?php echo get_category_link($category->cat_ID);?> ">
  8. <?php echo($category->cat_name); ?>
  9. </a>
  10. </li>
  11. <?php endforeach; ?>
  12. </ul>
  13. </div><!--Right_col Closer-->
  14. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement