From 385b717f0836e6c0411f196842c618519d987bc9 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 28 Apr 2010 04:56:50 +0000 Subject: [PATCH] Give menu items a default 'draft' state when added to the menu. props filosofo, fixes #13149 git-svn-id: https://develop.svn.wordpress.org/trunk@14270 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/nav-menu.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/nav-menu.php b/wp-includes/nav-menu.php index 2b42755461..1ba421a12a 100644 --- a/wp-includes/nav-menu.php +++ b/wp-includes/nav-menu.php @@ -244,7 +244,6 @@ function wp_update_nav_menu_item( $menu_id = 0, $menu_item_db_id = 0, $menu_item 'post_content' => $args['menu-item-description'], 'post_excerpt' => $args['menu-item-attr-title'], 'post_parent' => $args['menu-item-parent-id'], - 'post_status' => 'publish', 'post_title' => $args['menu-item-title'], 'post_type' => 'nav_menu_item', 'tax_input' => array( 'nav_menu' => $menu->name ), @@ -253,11 +252,13 @@ function wp_update_nav_menu_item( $menu_id = 0, $menu_item_db_id = 0, $menu_item // New menu item if ( 0 == $menu_item_db_id ) { $post['ID'] = 0; + $post['post_status'] = 'draft'; $menu_item_db_id = wp_insert_post( $post ); // Update existing menu item } else { $post['ID'] = $menu_item_db_id; + $post['post_status'] = 'publish'; wp_update_post( $post ); }