Get the number of item in a gallery
-
Hello everybody, I don’t know if is possible get the number of the attachment of a gallery.
I have the code for the total number of the images, but I need get the number of the current image.
The code for the number of all the attachment on my post:
<?php $id = $post->post_parent; $total_attachments = $wpdb->get_var("SELECT COUNT(ID) FROM {$wpdb->prefix}posts WHERE post_type = 'attachment' AND post_parent = $id"); echo $total_attachments; ?>
But I need to show like this: photo #x of 20 (where #x is the current number of the image on the gallery and 20 is the total number of items of the gallery).
Thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Get the number of item in a gallery’ is closed to new replies.