How to Loop Through all Posts and Count Attachments using Get Media Attachments

If you are counting post images, try the following. It doesn’t capture a post’s featured image, but it does get images in the post content.

$attached_images = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image;
$Image_Count=count($attached_images);