Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

footer

if ( ! function_exists( 'Wilmer_menu_footer' ) ) {

// Register Navigation Menus
function Wilmer_menu_footer() {

	$locations = array(
		'ubicación-footer' => __( 'Footer', 'Wilmer_menu_footer' ),
	);
	register_nav_menus( $locations );

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

}