Remove Img Title
-
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?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove Img Title’ is closed to new replies.