How can I display the total number of images in a gallery on the image attachment page (image.php)?
I have found this code that works when put on the single.php file, but doesn't work on image.php:
<?php echo $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_parent = '$post->ID' AND post_type = 'attachment'" ); ?>
I use the image.php to display one image at a time from the gallery but I'd like to be able to display something like "This is image 3 out of 8"