Is there a string that will allow me to include only pages 3, 1 and 2 (in that order) while excluding page 4?
Is there a string that will allow me to include only pages 3, 1 and 2 (in that order) while excluding page 4?
Have a look at the various options associated with wp_list_pages.
If you set the Page order (via Manage Pages),
wp_list_pages('sort_column=menu_order')
then just add the exclude:
wp_list_pages('sort_column=menu_order&exclude=4')
That worked, thanks.
This topic has been closed to new replies.