function ilk_onizlemeyi_al($post_id) {
$id = (int) $post_id;
$args = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'numberposts' => 1,
'order' => 'ASC',
'orderby' => 'menu_order ID',
'post_status' => null,
'post_parent' => $id
);
$attachments = get_posts($args);
if ($attachments) {
return wp_get_attachment_thumb_url( $attachments[0]->ID );
}else{
return 'http://www.siteadresi.com/resim.jpg';
}
}
normalde kodun amacı farklı ama resimsiz yazılar için kullanabilirsin :)
kategori etiket vs içinde üstteki timthumb kodunu kullan. width height değerleri oralarda farklı olabilir. dikkat et. kolay gelsin iyi çalışmalar diliyorum.