Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

menu_ubicacion_footer

Ubicación para un menú en el pie de página

if ( ! function_exists( 'custom_navigation_menus' ) ) {

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'ubicacion_footer' => __( 'Footer', 'va_ubicacion_menu_footer' ),
	);
	register_nav_menus( $locations );

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

}