Return to Snippet

Revision: 36637
at November 24, 2010 08:19 by RWolford


Initial Code
<?php
//Get images attached to the post
$args = array(
	'post_type' => 'attachment',
	'post_mime_type' => 'image',
	'numberposts' => -1,
        'order' => 'ASC',
	'post_status' => null,
	'post_parent' => $post->ID
);
$attachments = get_posts($args);
if ($attachments) {
	foreach ($attachments as $attachment) {
		$img = wp_get_attachment_thumb_url( $attachment->ID );
                break;
        }
//Display image
}
?>

Initial URL


Initial Description
Used in Wordpress to get the post Thumbnail. Thumb url goes to $img

Initial Title
Get Post Thumbnail

Initial Tags
wordpress

Initial Language
PHP