Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

5 Footer Menus

5 Footer Menus

if ( ! function_exists( 'footer_navigation_menus' ) ) {

// Register Navigation Menus
function footer_navigation_menus() {

	$locations = array(
		'f_menu_1' => __( 'Footer Menu 1', 'text_domain' ),
		'f_menu_2' => __( 'Footer Menu 2', 'text_domain' ),
		'f_menu_3' => __( 'Footer Menu 3', 'text_domain' ),
		'f_menu_4' => __( 'Footer Menu 4', 'text_domain' ),
		'f_menu_5' => __( 'Footer Menu 5', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

// Hook into the 'init' action
add_action( 'init', 'footer_navigation_menus' );

}