How do I count the number of media attachments a specific post has?

Output example: This post has 22 photos.

Thanks!

2 Answers
2

Use this code if you’re in the loop:

$attachments = get_children( array( 'post_parent' => $post->ID ) );
$count = count( $attachments );

If you’re not in the loop, substitute $post->ID with the ID of the specific post. But that should count all attachments.

Leave a Reply

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