¿Estás buscando una forma de enlazar las imágenes en miniatura de la galería Next Gen con URLs? Aunque probablemente exista un plugin para ello, hemos creado un rápido fragmento de código que puedes utilizar para vincular las imágenes en miniatura de la galería Next Gen a URLs en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código a tu archivo gallery.php de Next Gen:
<?php <div class="ngg-gallery-thumbnail" > <a href="<?php echo $image->ngg_custom_fields["Link"]; ?>" title="<?php echo $image->description ?>" <?php echo $image->thumbcode ?> > <?php if ( !$image->hidden ) { ?> <img title="<?php echo $image->alttext ?>" alt="<?php echo $image->alttext ?>" src="<?php echo $image->thumbnailURL ?>" <?php echo $image->size ?> /> <a href="<?php echo $image->ngg_custom_fields["Link"]; ?>"> <?php echo $image->alttext ?> <?php } ?> </a> </div> ?>
También tendrás que crear un campo personalizado ‘LINK’ utilizando un plugin de WordPress de terceros.
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si te ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 28 mejores temas de curriculum vitae de WordPress para crear la mejor impresión y cómo crear un formulario de varias páginas en WordPress.
hi, what the specific file? i try to use setting html link on description field, using caption-view template, but targe attribute doesnt works.
i post this at WP plugins:
https://wordpress.org/support/topic/link-target-attribute-doesnt-works-on-link-at-description-field/
tks!
Having installed the latest version of WordPress and NextGen Gallery, it is no longer clear where this code should go. However, it is simply possible to add the HTML href tag to either the title or the caption of an image. That way you can follow the link through the lightbox.