Advertisement
Guest User

Untitled

a guest
Jul 7th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'type' => $type,
  4. 'child_of' => 0,
  5. 'parent' => '',
  6. 'orderby' => 'name',
  7. 'order' => 'ASC',
  8. 'taxonomy' => 'categoria',
  9. 'pad_counts' => false
  10. );
  11. $categories_odin = get_categories($args);
  12. ?>
  13. <?php foreach( $categories_odin as $category_product ):?>
  14.  
  15. <?php $category_link = get_category_link( $category_product->term_id ); ?>
  16. <a href="<?php echo esc_url( $category_link ); ?>" title="Category Name"><?php echo $category_product->name; ?></a>
  17.  
  18. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement