Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Enable menus

Register Main & Social menus with child theme support

if ( ! function_exists( 'custom_navigation_menus' ) ) {

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'main-nav' => __( 'Main Navigation', 'wintheday' ),
		'social-nav' => __( 'Social media links', 'wintheday' ),
	);
	register_nav_menus( $locations );

}
add_action( 'init', 'custom_navigation_menus' );

}