__( 'Main Sidebar' ), 'id' => 'sidebar1', 'description' => __( 'Widgets will appear in the main sidebar.' ) ) ); add_theme_support( 'post-formats', array( 'aside', 'gallery', 'image', 'video', 'audio' ) ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'automatic-feed-links' ); /************************* Fix Menu not fetching *************************/ function getMainMenu($menulocation){ $locations = get_nav_menu_locations(); $menuItems = wp_get_nav_menu_items( $locations[ $menulocation ] ); if(empty($menuItems)) return false; else{ wp_nav_menu(array('container'=> false, 'theme_location' => $menulocation)); return true; } } /******************************************* Conditional loading of functions *******************************************/ ?>