How can I display my featured image correctly inside my single posts?
As mentioned by Rahil Wazir, take that code snippet <?php the_post_thumbnail(); ?> away from single.php. Put following in your functions.php (at the bottom) add_filter(‘the_content’, ‘put_thumbnail_in_posting’); function put_thumbnail_in_posting($content) { global $post; if ( has_post_thumbnail() && ( $post->post_type == ‘post’ ) ) { the_post_thumbnail( ”, array( ‘style’ => ‘float:left;margin:15px;’ ) ); } return $content; } Change the … Read more