Changing menu order

Ran into one issue while adding new menu item to the main menu. So I created “IT Technology” category, which I want to appear on the main menu. Since I’m using link categories to display these link, I just added new link. And it worked. Kind of:

link-category-before

Yes, it did add the link, but not where I wanted it to add. I want ‘About’ link to be at the end of the list. Always. However it seems that there’s no way of changing the order in the link category, and the links appear based on the link IDs. So the only way to resolve this, is to change link_id of the ‘About’ link to something big, let’s say 10’000. I’m never going to have that many links , so 10’000 sounds like a sound choice.

Go to your database and select all links:

+---------+---------------------------------------------------+
| link_id | link_url                                          |
+---------+---------------------------------------------------+
...
|       8 | http://www.grenadepod.com/category/news/          |
|       9 | http://www.grenadepod.com/about/                  |
|      10 | http://www.grenadepod.com/category/it-technology/ |
+---------+---------------------------------------------------+
10 rows in set (0.00 sec)

Now change the link_id:

mysql> update wp_links set link_id=10000 where link_id=9;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0
 
mysql> select link_id, link_url from wp_links;
+---------+---------------------------------------------------+
| link_id | link_url                                          |
+---------+---------------------------------------------------+
...
|       8 | http://www.grenadepod.com/category/news/          |
|      10 | http://www.grenadepod.com/category/it-technology/ |
|   10000 | http://www.grenadepod.com/about/                  |
+---------+---------------------------------------------------+
 
10 rows in set (0.00 sec)

All done, all fixed and here’s how the menu looks now:

link-category-after

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • Live
  • Netvibes
  • NewsVine
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter
  • Yahoo! Bookmarks

Related posts:

  1. Top level menu in Arras theme
  2. Essential WordPress plugins