Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Creación de ubicación para menus en el footer

Este código snippet crea una ubicación para mostrar otro menú que colocaremos en el footer.

if ( ! function_exists( 'lujan_ubicación_menu_footer' ) ) {

// Register Navigation Menus
function lujan_ubicación_menu_footer() {

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

}
add_action( 'init', 'lujan_ubicación_menu_footer' );

}