I’m not sure if this is possible but after extensive searching I can’t find an answer.

What I want to do is to get all images from a NextGEN gallery so I can display them in a custom slideshow within a page/post.

Is it possible to load them into an array or edit the HTML in some way?

Any help is greatly appreciated!

2 Answers
2

For anyone interested I found a solution to what I wanted.

You simply need to create a custom template

Then I accessed the images like this:

<?php foreach ($images as $image) : ?>
<?php echo do_shortcode('[singlepic id="' . $image->pid . '"]'); ?>
<?php endforeach; ?>

Leave a Reply

Your email address will not be published. Required fields are marked *