cwt adlı üyeden alıntı


add_filter( 'the_content', 'featured_image_in_feed' );
function featured_image_in_feed( $content ) {
global $post;
if( is_feed() ) {
if ( has_post_thumbnail( $post->ID ) ){
$output = get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'float:right; margin:0 0 10px 10px;' ) );
$content = $output . $content;
}
}
return $content;
}
?>


kodu temanızda functions.php dosyasına ekleyin


olmadı :( öne çıkarılmış resim kullanıyorum temada belirtmek istedim belki farklı bir kod vardır