How to Add Featured Image Support to a WordPress Theme
WordPress themes makes it possible to give your users control of many aspects of their site’s designs.
One of the most common design features in themes are featured images. Many bloggers love to use large, high-quality images for their posts.
In this tutorial, we will show you how to add featured image support in a custom WordPress theme.
Step #1. Add featured image setting in the dashboard
Edit your theme’s functions.php file and add the code below:
{codecitation php}function mytheme_post_thumbnails() {
add_theme_support( ‘post-thumbnails’ );
}
add_action( ‘after_setup_theme’, ‘mytheme_post_thumbnails’ );{/codecitation}
When you create or edit a post, the new setting will be displayed:
Step #2. Display the featured image in single posts
Look for the theme file that renders individual posts on your site. Often this file is called single.php.
Inside the while() loop add this code:
{codecitation php}<?php
if( has_post_thumbnail() ):
echo get_the_post_thumbnail();
endif;
?>{/codecitation}
The code above checks whether an image exists for the post/page and then prints it with get_the_post_thumbnail() function.
After your new code is integrated into the loop, it would look similar to this:
{codecitation php}<?php
while ( have_posts() ) : the_post();
if( has_post_thumbnail() ):
echo get_the_post_thumbnail();
endif;
endwhile;
?>{/codecitation}
Step #3. Check the end result
- Create or edit a post.
- Add a featured image.
- Preview the changes:
Summary
Hopefully this helps you. A stylish Featured Image really helps improve any WordPress post.
Any questions, please feel free to ask in the comments …
WooCommerce website
Hi I bought a template and would like an advise for what would be the best way to upload 185 small short MP4 videos to the woocomerce website. [url=http://www.myjewelryforever.com]www.myjewelryforever.com[/url]
Worked like a charm! Thanks!
What if you don’t want the Featured Image to display on YOUR site, but instead you want it to be displayed on outbounds links FROM your site?
Thank you so much. Perfect explanation. Just what I need 🙂
worked like charm 🙂 thanks
Works for me, thank you so much
Hey dude u saved my day tnk!
cool. thank you 😉
thanks a lot
Thank you so so much! This was incredible
Hi this is great although it is displaying the image above the blog title instead of below it
[url=https://www.consciousconn3ctions.co.uk/iq-eq-sq-and-an-orange/]example post[/url]
I am using the twenty seventeen theme not sure if there is another file to edit, the single.php
looks like this
not work
Thanks bro. This helped with my custom theme.
Didn’t work for me. Is there any difference in how this works currently (in 2022)?