Advertisement
Guest User

Untitled

a guest
Mar 4th, 2012
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <ul id="nav2" class="clearfloat">
  2. <li><a href="<?php echo get_option('home'); ?>/" class="on">Home</a></li>
  3. <?php wp_list_categories('orderby=name&exlude=181&title_li=');
  4. $this_category = get_category($cat);
  5. if (get_category_children($this_category->cat_ID) != "") {
  6. echo "<ul>";
  7. wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID);
  8. echo "</ul>";
  9. }
  10. ?>
  11. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement