I have a menu of pages:
<?php wp_list_pages('depth=1&title_li='); ?>
to that (at the end of the list) that I'd like to add a link (blog) that goes to a page showing all the posts.
How the heck do I do that? thanks in advance, ad
I have a menu of pages:
<?php wp_list_pages('depth=1&title_li='); ?>
to that (at the end of the list) that I'd like to add a link (blog) that goes to a page showing all the posts.
How the heck do I do that? thanks in advance, ad
Not easy to do. See the wp_list_pages codex page for more info. I've looked into it myself and I believe you're going to have to hack the wp_list_pages function since it creates the entire list for the contents, including the <ul> and </ul> tags.
This topic has been closed to new replies.