Technology – Wordpress – Free Wordpress Themes


Posts Tagged ‘ Wordpress ’

How to make Wordpress categories & pages into horizontal menu

Sep 19th, 2009 | By steve soe | Category: How-To, Wordpress

Some of my readers asked me how I created my horizontal menu using Wordpress WP-Categories & WP-Pages. The short answer is — I added the following two code in header.php page.

<?php wp_list_pages(‘title_li=&depth=1&exclude=’); ?>  /* For Pages */

<?php wp_list_categories(’sort_column=name&sort_order=asc&style=list&children=true&hierarchical=true&title_li=0′); ?>   /* For Categories */

Most of the Wordpress Themes have CSS tags for menu [...]