Only show top-level items when adding pages to a User's First Nav Menu. (This is also the title of Dave's first children's book.)

props lessbloat.
fixes #25122.


git-svn-id: https://develop.svn.wordpress.org/trunk@25622 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-09-25 16:22:29 +00:00
parent 57a5269b13
commit 1df5d5fa6b
1 changed files with 5 additions and 0 deletions

View File

@ -178,6 +178,11 @@ var wpNavMenu;
var t = $(this),
listItemDBIDMatch = re.exec( t.attr('name') ),
listItemDBID = 'undefined' == typeof listItemDBIDMatch[1] ? 0 : parseInt(listItemDBIDMatch[1], 10);
// Only show top level items
if (0 !== t.closest('ul.children').length)
return;
if ( this.className && -1 != this.className.indexOf('add-to-top') )
processMethod = api.addMenuItemToTop;
menuItems[listItemDBID] = t.closest('li').getItemData( 'add-menu-item', listItemDBID );