Hello all,
I was wondering if anyone knows how to display gallery tags for users using the method discribed in the post below
http://wordpress.org/support/topic/nextgen-gallery-display-tags-below-images?replies=3
Its advices to insert this into the code.
<?php $tags = wp_get_object_terms($image->pid,'ngg_tag') ?>
<?php foreach ( $tags as $tag ) : ?>
/tag/<?php echo $tag->slug; ?>"><?php echo $tag->name; ?>
<?php endforeach; ?>
Does anyone know where?
Thanks