Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Ubicacion Menu

Ubicaciones de Menus

if ( ! function_exists( 'troher_ubicacion_menu_footer' ) ) {

// Register Navigation Menus
function troher_ubicacion_menu_footer() {

	$locations = array(
		'ubicacion_footer' => __( 'footer', 'troher_ubicacion_menu_footer' ),
	);
	register_nav_menus( $locations );

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

}