Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

essai menu

test menu

// Register Navigation Menus
function custom_navigation_menus_footer() {

	$locations = array(
		'Footer1' => __( 'footer1', 'text_domain' ),
		'Footer2' => __( 'footer2', 'text_domain' ),
		'Footer3' => __( 'footer3', 'text_domain' ),
		'Footer4' => __( 'footer4', 'text_domain' ),
		'Footer5' => __( 'footer5', 'text_domain' ),
	);
	register_nav_menus( $locations );

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