
How to Show Featured Image in WordPress Single Post?


Display featured image in WordPress post as full, large, medium, thumbnail size
Every available WordPress theme doesn’t give you the option to control if you want to show featured image in a post or in what size you want to display them.
The image is crucial for your blog post as it’s probably the first thing audience notice.
For ex, I am using the Hueman theme and that doesn’t display featured images in single post. Here is what I did and thought to share so you can be benefited.
- Go to your theme directory
- For ex: wp-content/themes/hueman
- Take a backup of single.php
- Edit single.php and search for <?php the_content(); ?>
- Add following above the <?php the_content(); ?>
<?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. the_post_thumbnail( 'full' ); } ?>
- Save the file and refresh your wordpress to see them in action.
Above code will show featured image in the single post as original image size. This is how single.php will look like.
If you want to control the size, you can change the_post_thumbnail
parameter.
To display default thumbnail size (default 150px x 150px max)
the_post_thumbnail();
To display in medium size (default 300px x 300px max)
the_post_thumbnail( 'medium' );
To display in large size (default 640px x 640px max)
the_post_thumbnail( 'large' );
To display in original uploaded size
the_post_thumbnail( 'full' );
This has helped me and I hope you too. Don’t forget to compress your images with these awesome free online image compressor tool. Let me know how it goes with your theme.
More great readings on WordPress
-
Understanding 301 Redirects for BeginnersTanish Chowdhary on June 14, 2022
-
A2 Managed WordPress Hosting is for The Professional BloggerHitesh Sant on June 10, 2022
-
Top 8 Platforms to Hire WordPress DevelopersGeekflare Editorial on June 6, 2022
-
Start Your Online Shop Today with Nexcess StoreBuilderHitesh Sant on May 25, 2022
-
How to Protect Your WordPress Site with iThemes Security ProHitesh Sant on May 7, 2022
-
6 Best WordPress Accessibility Plugins in 2022Tamal Das on April 22, 2022
Join Geekflare Newsletter
Every week we share trending articles and tools in our newsletter. More than 10,000 people enjoy reading, and you will love it too.