Using get_page_children to create a submenu on landing pages and it works great but noticed in the codex there's no mention of order as a parameter. The order is set in the admin panel and is not being used by this function.
Should I be using a different function to create this nav?
My code, more or less:
[Code moderated as per the Forum Rules. Please use the pastebin]
I can get what I need using wp_list_pages(), however I do not want them to be wrapping in <li> tags.
Feed wp_list_pages into a variable and then run strip_tags on it?
Thanks esmi, I continued searching and stumbled on this thread:
http://wordpress.org/support/topic/remove-li-from-wp_list_pages?replies=7
I'll eval the list as a long html string and replace the li tags with what I need.