Advertisement
Guest User

Untitled

a guest
May 26th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <?php if ($categories && isset($flo_blog_post_categories) && $flo_blog_post_categories): ?>
  2. <div class="column tags">
  3. <div class="i flo-icon-location"></div>
  4. <div class="title_wrap">
  5. <div class="title"><?php _e("CATEGORIES", "flotheme"); ?></div>
  6. <div class="subtitle">
  7. <?php foreach ($categories as $categ):
  8. $cat = get_category($categ); ?>
  9. <a href="<?php echo get_category_link($cat->term_id); ?>">
  10. <?php echo $cat->name; ?>
  11. </a>
  12. <?php endforeach; ?>
  13. </div>
  14. </div>
  15. </div>
  16. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement