Get posts number of attachments
You can get the # of attachments related to a post by using this snippet.
<?php
$attachments = get_children(array(‘post_parent’=>$post->ID));
$nbImg = count($attachments);
echo ‘There are ‘.$nbImg.’ pictures on this post.’;
?>