Check for menu before trying to use it as object.
authorSteve Sutton <steve@gaslightmedia.com>
Thu, 25 Oct 2018 14:48:43 +0000 (10:48 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Thu, 25 Oct 2018 14:48:43 +0000 (10:48 -0400)
Use only if $menu is there.

setup/adminHooks.php

index 2886dbd..2f167d2 100644 (file)
@@ -109,8 +109,10 @@ $locations = get_theme_mod( 'nav_menu_locations' );
 if(!empty($locations))
 {
     $menu = get_term_by('name', $menuName, 'nav_menu');
-    $locations[$menuSlug] = $menu->term_id;
-    set_theme_mod('nav_menu_locations', $locations);
+    if ( $menu ) {
+        $locations[$menuSlug] = $menu->term_id;
+        set_theme_mod('nav_menu_locations', $locations);
+    }
 }
 
 add_action( 'add_meta_boxes', function() {