If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > PHP > Drop Down Menu Order

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-16-11, 10:04
Sculley Sculley is offline
Registered User
 
Join Date: Nov 2011
Posts: 1
Drop Down Menu Order

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!
Attached Thumbnails
Drop Down Menu Order-subtle-dropdowns.jpg  
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On