Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

bds menus

if ( ! function_exists( 'bds_menus' ) ) {

// Register Navigation Menus
function bds_menus() {

	$locations = array(
		'header_menu' => 'Header Menu',
		'footer_menu' => 'Footer Menu',
	);
	register_nav_menus( $locations );

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

}