Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Ubicación de menú

Con este snippet creamos una ubicación de menú. E introducimos este código en el lugar donde queramos la ubicación:

if ( ! function_exists( 'mm_ubicacion_menu_footer' ) ) {

// Register Navigation Menus
function mm_ubicacion_menu_footer() {

	$locations = array(
		'ubicacion_footer' => __( 'MM Footer', 'mm_ubicacion_menu_footer' ),
	);
	register_nav_menus( $locations );

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

}