I've just implemented the child_of tag with wp_list_pages in a page (template) to show that page's child pages, and I've managed to get rid of the list-style bullets, but I can't make the title "Pages" go away. Any ideas?
Cheers!
I've just implemented the child_of tag with wp_list_pages in a page (template) to show that page's child pages, and I've managed to get rid of the list-style bullets, but I can't make the title "Pages" go away. Any ideas?
Cheers!
Use the title_li= argument with the template tag, wp_list_pages(), so that the default Pages title doesn't appear.
Example:
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>Ah, thanks. I had a feeling it would be something that simple!
Much appreciated Michael.
This topic has been closed to new replies.