Hello,
I'm using Wp_Page_Menu to make a list of all the pages on my site, for a left navigation bar. The only problem is that I need one of the pages to be the first item listed, but not be the homepage.
Currently I'm using this to sort by date, in descending order and excluding those 3 pages:
<?php wp_page_menu( array( 'sort_column' => 'post_date', 'sort_order' => 'DESC', 'exclude' => '51,53,67' ) ); ?>
Anyone have an idea how to do this?
Thanks!