Forums
Forums / Fixing WordPress / Cant Reverse Order
(@brad8985)
15 years, 11 months ago
All I want to do is reverse the order that my pages are listed in my footer nav but its being difficult…
<?php wp_list_pages("title_li=&depth=1&sort_column=menu_order&order=ASC&exclude="); ?>
Changing ASC to DESC makes no difference. Any ideas why?
(@michaelh)
Use sort_order with the template tag, wp_list_pages():
<?php wp_list_pages("title_li=&depth=1&sort_column=menu_order&sort_order=DESC&exclude="); ?>
Done, Cheers 😉
The topic ‘Cant Reverse Order’ is closed to new replies.