Biraz deneme yanılma ile resmi büyütmeyi de başardım son olarak bi sorum olacak, öne çıkan görselin yazının içinde çıkmasını sağlayabilir miyiz?
add_filter( 'the_content', 'insert_featured_image', 20 );
function insert_featured_image( $content ) {
$content = preg_replace( "/<\/p>/", "" . get_the_post_thumbnail($post->ID, 'post-single'), $content, 1 );
return $content;
}
kodunu functions.php ye ekleyerek yapabilirsiniz.