Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

primary-custom nav-bar-drop-down-menu-top-left

custom navigation menu with dynamic drop down SubPanel child node with support, active dynamic click-opens in new tab on selection, when inactive menu bar hides content

// Register Default Headers
function custom_default_headers() {

	$headers = array(
		'custom-nav-bar-menu-home-top-left' => array(
			'description'   => __( 'default header menu top left, primary navigation menu, custom navigation bar, child node Subpanel, style drop down menu, dynamic nav-bar menu, import content, open in new tab dynamic active click link, text domain, complimentary', 'text_domain' ),
			'url'           => 'https://codex.wordpress.org/Importing_Content_readme.html',
			'thumbnail_url' => 'http://codex.wordpress.org/Settings_General_SubPanel/Settings>General_Help.html',
		),
	);
	register_default_headers( $headers );

}
add_action( 'after_setup_theme', 'custom_default_headers' );