Ticket #13525: 13525-dont-show-drafts.patch
File 13525-dont-show-drafts.patch, 762 bytes (added by , 15 years ago) |
---|
-
wp-admin/includes/nav-menu.php
991 991 992 992 // If the menu exists, get its items. 993 993 if ( is_nav_menu( $menu ) ) { 994 $menu_items = wp_get_nav_menu_items( $menu->term_id, array('post_status' => ' any') );994 $menu_items = wp_get_nav_menu_items( $menu->term_id, array('post_status' => 'publish') ); 995 995 $result = '<div id="menu-instructions" class="post-body-plain'; 996 996 $result .= ( ! empty($menu_items) ) ? ' menu-instructions-inactive">' : '">'; 997 997 $result .= __('Select menu items (pages, categories, links) from the boxes at left to begin building your custom menu.');