/ Published in: PHP
Used in Wordpress to get the post Thumbnail. Thumb url goes to $img
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php //Get images attached to the post '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 } ?>