Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

menú foother

esta es un código para poner un menú en el footer

if ( ! function_exists( 'nacho_menú_ubicación_footer' ) ) {

// Register Navigation Menus
function nacho_menú_ubicación_footer() {

	$locations = array(
		'ubicación-footer' => __( 'Footer', 'nacho_menú_ubicación_footer' ),
	);
	register_nav_menus( $locations );

}
add_action( 'init', 'nacho_menú_ubicación_footer' );

}