Get caption from unattached images in gallery?
<?php $loop = new WP_Query( array( ‘post_type’ => ‘gallery’, ‘posts_per_page’ => 100 ) ); while ( $loop->have_posts() ) : $loop->the_post(); if ( $gallery = get_post_gallery( get_the_ID(), false ) ) : $img_ids = explode( ‘,’, $gallery[‘ids’] ); /* Loop through all the image and output them one by one */ foreach( $gallery[‘src’] as $key => $src … Read more