Hi everyone...I am new to this forum and somewhat to php. I am trying to get the drop downs to work in this order on the second <li> : 903,896,898,1513 but can't get the order to work. I think it automatically picks up ascending order? Is there another php/include I can use to choose the order I want for the drop downs? Hope this makes sense. It's a WordPress site.
Code:
<div id="navigation">
<div id="navbar_menu">
<ul id="nav_menu">
<li><?php wp_list_pages('include=3&title_li=&depth=2');?></li>
<li><?php wp_list_pages('include=2,903,896,898,1513&title_li=&depth=2');?></li>
<li><?php wp_list_pages('include=23,911,913&title_li=&depth=1');?></li>
<li><?php wp_list_pages('include=25,921,925,927&title_li=&depth=1');?></li>
<li><?php wp_list_pages('include=27&title_li=&depth=2');?></li>
<li><?php wp_list_categories('include=3&title_li=&depth=2');?></li>
<li><?php wp_list_pages('include=407&title_li=&depth=2');?></li>
</ul>
</div>
</div>
Thanks in advance for your help!