[wp-trac] [WordPress Trac] #11817: Better Site Menu Management

WordPress Trac wp-trac at lists.automattic.com
Wed Feb 17 18:15:29 UTC 2010


#11817: Better Site Menu Management
----------------------------+-----------------------------------------------
 Reporter:  scribu          |       Owner:           
     Type:  task (blessed)  |      Status:  assigned 
 Priority:  normal          |   Milestone:  3.0      
Component:  General         |     Version:           
 Severity:  normal          |    Keywords:  has-patch
----------------------------+-----------------------------------------------

Comment(by ryan):

 The schema:

 {{{
 CREATE TABLE $wpdb->custom_nav_records (
  id mediumint(9) NOT NULL auto_increment,
  position bigint(11) NOT NULL,
  post_id bigint(11) NOT NULL,
  parent_id bigint(11) NOT NULL,
  custom_title text NOT NULL,
  custom_link VARCHAR(55) NOT NULL,
  custom_description text NOT NULL,
  menu_icon text NOT NULL,
  link_type varchar(55) NOT NULL default 'custom',
  menu_id bigint(11) NOT NULL,
  custom_anchor_title text NOT NULL,
  new_window bigint(11) NOT NULL default 0,
  UNIQUE KEY id (id)
 ) $charset_collate;
 CREATE TABLE $wpdb->custom_nav_menus (
  id mediumint(9) NOT NULL auto_increment,
  menu_name text NOT NULL,
  UNIQUE KEY id (id)
 ) $charset_collate;
 }}}

-- 
Ticket URL: <http://core.trac.wordpress.org/ticket/11817#comment:97>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list