nextgen gallery: how to get picture url by gallery id
All posts in my site have custom field with nextgen gallery ID. To display gallery I use this code:
$gallery_id = get_post_meta( $post-ID, 'galerijos_id', true); // Get gallery id from custom field data
if( $gallery_id ){
echo 'div class="post-gallery"';
echo nggShowGallery( $gallery_id ); // Display the gallery
echo '/div';
How do I get pictures urls by gallery ID? I need url to pass to xml file. Thanks in advance.
Topic plugin-nextgen-gallery custom-field Wordpress
Category Web