Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <?php
  2. if (is_category()) {
  3. $this_category = get_category($cat);
  4. }
  5. ?>
  6.  
  7.  
  8. <?php
  9. if($this_category->category_parent)
  10. $this_category = wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->category_parent."&echo=0");
  11. else
  12. $this_category = wp_list_categories('orderby=id&depth=1&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID."&echo=0");
  13. if ($this_category) { ?>
  14.  
  15. <ul>
  16. <?php echo $this_category; ?>
  17. </ul>
  18.  
  19. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement