Skip to content

Instantly share code, notes, and snippets.

@Narga
Created June 7, 2012 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Narga/2886132 to your computer and use it in GitHub Desktop.
Save Narga/2886132 to your computer and use it in GitHub Desktop.
Wordpress - Navigation Listing
<ul id="nav">
<?php wp_list_categories('title_li=&sort_column=menu_order'); ?>
</ul>
# You might also want to include a home link. You can add this manually like so:
<ul id="nav">
<li><a href="<? bloginfo('siteurl'); ?>">Home</a></li>
<?php wp_list_categories('title_li=&sort_column=menu_order'); ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment