Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2. categorias = apply_filters('taxonomy-images-get-terms', '', array( 'taxonomy' => 'category') );
  3. foreach($categorias as $key => $categoria):
  4. if($key < 6):
  5. ?>
  6. <div class="box">
  7. <a href="<?php echo get_category_link($categoria->term_id);?>">
  8. <figure>
  9. <?php echo wp_get_attachment_image($categoria->image_id,''); ?>
  10. </figure>
  11. <img src="<?php bloginfo('template_directory');?>/images/icones/plus.png" class="plus-icone" alt="">
  12. <figcaption class="titulo-foto-categoria"><?php echo $categoria->name;?></figcaption>
  13. </a>
  14. </div>
  15. <?php
  16. endif;
  17. endforeach;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement