The customer loads the images over the wordpress-dashboard. I display it with
Code:
<?php $image = rwmb_meta( 'metabox_screenshot2' );
if ( $image != '' ) {?>
<a href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image($image); ?></a>
<?php } ?>
<?php endwhile; endif; ?>
The <ul class="group"> from the (jQuery Large Thumb Gallery-)index.html includes 6 images.
My customer will load more then 6 images, probably more than 70 images and so I need a solution for this.
The solution could be javaScript, that generates every 6 Images a new <ul class="group"> - but I don't know how I realize this, because I don't know enough of javaScript
Bookmarks