Hello guys, Who among you here have tried using the Amazing Grace Theme? I want to add more menus but then I can’t still figure out on how to do it. I was expecting that these menus are categories, but when I added more categories, they didn't show up. If anyone has managed to conquer this one, I would appreciate some instructions. Thanks, magiclouie
That menu is built using the wp_list_categories function. One of its default settings is "Displays only Categories with posts". Do your missing categories have posts? If not, try creating a dummy post for each one. You can also change it to show empty categories if you like. Open header.php in the theme editor and replace this line, near the end: <?php wp_list_categories('orderby=count&order=DESC&show_count=0&hierarchical=1&title_li=&depth=1'); ?> Code (markup): With this line: <?php wp_list_categories('orderby=count&order=DESC&show_count=0&hierarchical=1&title_li=&depth=1&hide_empty=0'); ?> Code (markup):