<?php
if ( has_post_thumbnail()) :
the_post_thumbnail( 'list', array('class' => 'fl-right', 'alt' => ''.get_the_title().'', 'title' => ''.get_the_title().'' ));
elseif (get_post_meta($post->ID, 'resim', true) != '') :
echo '<img class="fl-right" src="'.get_post_meta($post->ID, 'resim', true).'" width="196" height="106" alt="'.get_the_title().'" />';
[B]else :
echo '<img class="fl-right" src="'.fs_get_option('fs_logo').'" width="196" height="106" alt="'.get_the_title().'" />';
endif;[/B]
?>fs_get_option('fs_logo') tema tasarımcısı bu kod ile her resimi olmayan habere logoyu atamış. Ben bunu değiştirip her resim olmayan habere kendi belirleyeceğim resmi atamak istiyorum nasıl yapabilirim.
Kendi belirlediğiniz resmi hazırlayıp eski görselin üzerine yazdırmayı denediniz mi?