I have a WP 3.0 site running locally that has an epic menu of about 100 items, I need to export it so I can use it on the live site. But from what I can tell the Export function in WordPress doesn't back up your menus. How can I do it?
A:
Menu settings are stored in the options table. Dump that table and take a look at how they are structured.
songdogtech
2010-08-23 12:33:32
By menus I mean the Appearance > Menus in WordPress 3.0
Cameron
2010-08-23 12:35:48
Exactly. Look in wp_options.
songdogtech
2010-08-23 13:53:32
But Menus are custom post types and would be stored in the posts table would they not?
Cameron
2010-08-23 14:17:35
Just checked in wp_posts table and the nav menu items are defo in this table and NOT in the wp_options table.
Cameron
2010-08-24 08:39:46