This plugin does the job very well.
http://geekyweekly.com/mypageorder
Thread Starter
ken95
(@ken95)
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.
Thread Starter
ken95
(@ken95)
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 …