این کد رو به فایل فانکشن قالبتون اضافه کنید :
<?php
# Displays post image attachment (sizes: thumbnail, medium, full)
function dp_attachment_image($postid=0, $size='thumbnail', $attributes='') {
if ($postid<1) $postid = get_the_ID();
if ($images = get_children(array(
'post_parent' => $postid,
'post_type' => 'attachment',
'numberposts' => 1,
'post_mime_type' => 'image',)))
foreach($images as $image) {
$attachment=wp_get_attachment_image_src($image->ID, $size);
?><img src="<?php echo $attachment[0]; ?>" <?php echo $attributes; ?> /><?php
}
}
?>
بعد در فایل ایندکس قالبتون در جایی که از اون کدهای کوتاه کننده پست استفاده کردین قبل از اون اون تابع این کد رو قرار بدین :
<div class="test">
<?php dp_attachment_image($post->ID, 'full', 'alt="' . $post->post_title . '"'); ?>
</div>
من در کد ابلا حالت نمایشی رو بر روی full قرار دادم که شما م یتونید بر روی حالتهای دیگه medium و یا thumbnail قرارش بدین و بعد تابع نمایش عکس رو در یک کلاس قرار دادم به اسم test که استایل ساده ایی برای اون در نظر گرفتم مثل این :
.test img {
border: 0 none;
height: auto;
width: 200px;
}
.test {
border: 1px solid #DDDDDD;
float: right;
height: auto;
margin: 8px 4px;
padding: 1px;
width: 200px;
}