Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

menu_personalizado

if ( ! function_exists( 'menu_footer' ) ) {

// Register Navigation Menus
function menu_footer() {

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

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

}