normal resim ekleden konumu sol seçiyorum bu yani
Fatih Toprak adlı üyeden alıntı
temanızın functions.php dosyasındafunction zt_get_thumbnail($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) {
$thumbnail=wp_get_attachment_image_src($image->ID, $size);
?>
/>
}
// Yazı Resmi desteği kazandırma kodu // Bu yazı resmi özelliği katıyor
add_theme_support( 'post-thumbnails');
// Resmi 120px genişlik ve 90px yüksekliği aşmayacak "oranda" küçültür. Gerekli değişiklikleri yapınız
set_post_thumbnail_size( 120, 90 );
?>
if ( has_post_thumbnail() ) {
the_post_thumbnail();
} else {
// Eğer bir resim atanmamışsa standart bir resim göster
echo '';
}
?>
GoogleDoktoru adlı üyeden alıntı
hata verdi;