Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

ubicacion-footer

para ubicar menus

if ( ! function_exists( 'antolin_ubicacion_menu_footer' ) ) {

// Register Navigation Menus
function antolin_ubicacion_menu_footer() {

	$locations = array(
		'ubicacion-footer' => __( 'Footer', 'antolin_ubicacion_menu_footer' ),
	);
	register_nav_menus( $locations );

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

}