From fb62349c775c0794d8db387a26b98ff59d5da5ad Mon Sep 17 00:00:00 2001
From: Weston Ruter <westonruter@git.wordpress.org>
Date: Tue, 4 Aug 2015 21:56:57 +0000
Subject: [PATCH] Customizer: Restore default `fallback_cb` arg for
 `wp_nav_menu()` calls in customizer preview.

Props ocean90, westonruter.
Fixes #33218.


git-svn-id: https://develop.svn.wordpress.org/trunk@33585 602fd350-edb4-49c9-b593-d223f7449a82
---
 src/wp-includes/nav-menu-template.php | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/wp-includes/nav-menu-template.php b/src/wp-includes/nav-menu-template.php
index 80c0454e2a..bcc9b6325c 100644
--- a/src/wp-includes/nav-menu-template.php
+++ b/src/wp-includes/nav-menu-template.php
@@ -230,11 +230,6 @@ function wp_nav_menu( $args = array() ) {
 	'echo' => true, 'fallback_cb' => 'wp_page_menu', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
 	'depth' => 0, 'walker' => '', 'theme_location' => '' );
 
-	// Prevent a fallback_cb in Customizer Preview to assist with has_nav_menu() and partial refresh.
-	if ( is_customize_preview() ) {
-		$defaults['fallback_cb'] = '';
-	}
-
 	$args = wp_parse_args( $args, $defaults );
 	/**
 	 * Filter the arguments used to display a navigation menu.