In my website in menu bar I have 4 static menu items and one needs to be dynamic. Like
Home | About us | contact us| Services| Product
In this menu item list. I want “product” category along with its subcategories as sub menu. shown in menu. Like
Product
- sub product 1
- sub product 1.1
- sub product 2
- sub product 3
- sub product 3.1
Please suggest me how to fulfill above requirement.
Thank you.
Use
wp_list_categories()to create a<ul><li>list of all your categories and style that with CSS to get a menu. More info onwp_list_categories()here : http://codex.wordpress.org/Template_Tags/wp_list_categories (see the list of arguments).