How do i sort my menu items? I have like all my menu items unsorted, and i really want to sort them. I would like the Home page first, then Login (Page), then Blog (Post Category), then Downloads (Page) then About (Page), so, how do I do this? Thanks.
Ken
docwheeler
Member
Posted 2 years ago #
This plugin does the job very well.
http://geekyweekly.com/mypageorder
Yeah, not really.
It does only order the pages, not the other menu items, like post categories.
And it doesn't even do its work well. When i ordenend the pages, and clicked "Click to order pages", the pages are just in the same order as they were before.
You can always manually code your menu as an unordered list ... the exact structure may be theme dependent but essentially you can use a code structure similar to:
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Download</a></li>
<li><a href="#">About</a></li>
</ul>
Again, the exact placement and any additional style elements would be theme dependent.
Ok thank you. Where exactly can i do this?
Your menu (function call?) is usually found in your header.php file of the active theme. The above snippet (replacing the '#' with the correct 'URL') could be used to replace it.
Hopefully the theme you are using will identify it clearly enough ...