Hello!
I've a question regarding page order of subpages.
I've 4 pages. The page order is written on right of each page. The page_id is on the left of pages.
1. Home (1000)
2. Portfolio(2000)
3. About me(3000)
4.->Bio(3010)
5.->CV(3020)
6. Contact(4000)
Now i want to display only selected pages in the wp_list_pages template tag.
I want to show like
Bio - CV - Contact
i use
wp_list_page('title_li=&sort_column=menu_order&include=4,5,6')
But whatever i do the page (Contact) always come first then the pages are sorted accroding to menu items. Like
Contact - Bio - CV
It looks like that a page is having preference over page pages page orders everytime.
Why is it so?
Thanks.