I'm trying to post my menu on the webpage... but I'm having trouble showing the CHILDREN show up under the PARENT menu items...
I am using the following...
<?php wp_list_pages('include=2,52,11,41,50,54&sort_column=menu_order&title_li=&child_of=2,52,11,41,50,54' ); ?>
I choose ...
include=2,52,11,41,50,54
... because I only want a few PARENT items to be show. For each of those PARENT items, I want the CHILDREN to appear as a list beneath them. Right now, my list is only printing the PARENT items (and NO children).
I know the styles work fine, because I can see the menu when I hard code the menu with it's children.
I checked the CODEX for wp_list_pages, but I couldn't figure it out (I came up with the solution above). Can someone help me and show me how to do this?