I have the following code to grab the thumbnail images from the posts.
<?php
$attachments = get_children("post_parent={$post->ID}&post_type=attachment&post_mime_type=image&numberposts=1");
foreach ( $attachments as $att_id => $attachment) {
echo wp_get_attachment_image($att_id, 'thumbnail');
}
?>
That works great. But I need to remove / not display / hide the “Title” of the image. So that when someone does a mouse over on the image it won’t display the “title” as a pop-up.
Any ideas?