WPBeginner

Beginner's Guide for WordPress

  • Blog
    • Beginners Guide
    • News
    • Opinion
    • Showcase
    • Themes
    • Tutorials
    • WordPress Plugins
  • Start Here
  • Deals
  • Glossary
  • Videos
  • Products
X
☰
Beginner's Guide for WordPress / Start your WordPress Blog in minutes
Choosing the Best
WordPress Hosting
How to Easily
Install WordPress
Recommended
WordPress Plugins
View all Guides

WPBeginner» Blog» WordPress Plugins» 14 Best Featured Image Plugins and Tutorials for WordPress

14 Best Featured Image Plugins and Tutorials for WordPress

Last updated on August 7th, 2015 by Editorial Staff
442 Shares
Share
Tweet
Share
Special WordPress Hosting offer for WPBeginner Readers
14 Best Featured Image Plugins and Tutorials for WordPress

Featured images play an important role in most modern WordPress themes. While you can find beautiful royalty free images to use on your WordPress site as featured images, there is a lot more you can do with featured images. In this article, we will show you some of the best featured image plugins and tools for WordPress.

Video Tutorial

Subscribe to WPBeginner

If you don’t like the video or need more instructions, then continue reading.

1. Soliloquy

Soliloquy featured content slider

Soliloquy is the best WordPress slider plugin on the market. It comes with a featured content add-on that allows you to easily add featured content slider to any WordPress theme.

It automatically gets the featured image from your article and uses it as the slide with your post’s title and excerpt. See our tutorial on how to add featured content slider in WordPress for step by step instructions.

2. Quick Featured Images

Bulk edit featured images in WordPress

Quick Featured Images is a powerful WordPress plugin that lets you perform bulk editing actions on your featured images. You can replace, remove, or add featured images with bulk actions.

You can also set a default image to be used as featured image or instruct the plugin to automatically use the first image in a post as the featured image. Take a look at our tutorial on how to bulk edit featured images in WordPress for more detailed instructions.

3. Multiple Post Thumbnails

Multiple Featured Images

As the name suggests, this plugin allows you to add multiple featured images or post thumbnails in your WordPress posts. You will need to edit your theme files to display the secondary featured image.

See this tutorial on how to add multiple post thumbnails in WordPress for step by step instructions.

4. Require Featured Image

Require Featured Image

Many WordPress themes are designed in a way that your posts look strange without a featured image. Sometimes you or other authors on your site may forget to add featured image for a post.

This plugin simply stops authors on your site from publishing a post without a featured image. Take a look at how to require featured images for posts in WordPress for more instructions.

5. Featured Image Column

Featured image column

By default, WordPress does not tell you whether a post has featured image or not until you open the post in the post editor. This plugin simply adds a featured image column on your WordPress posts page.

It makes it easy for you to quickly see featured images set for posts. The plugin works for all post types, and you can exclude post types where you don’t want to display a featured image column. See our tutorial on how to add a featured image column in WordPress for details.

6. Default Featured Image

Default Featured Image

It is possible to display a default featured image in WordPress by adding code into your WordPress theme. However, many beginners don’t want to edit their theme. Default Featured Image plugin provides an easy way to do that.

Simply add a default featured image from WordPress media library. To learn more, take a look at our tutorial on how to set a default featured image in WordPress using a plugin.

7. Easy Add Thumbnail

Setting up featured images for old posts that do not have a featured image can be tricky. Easy Add Thumbnail plugin solves this problem by automatically setting up the first image in a post as featured image. Even if you or other authors on your site forget to set a featured image, this plugin will automatically set one for you.

For older posts, it sets a featured image when the post is viewed on the front-end. See our tutorial on how to add post attachment as featured image in WordPress.

8. Video Thumbnails

Video Thumbnails

If you are creating a video site with WordPress, then you may want to show video thumbnails as featured images for your posts. Video Thumbnails plugin automatically checks your posts for a YouTube, Vimeo, or DailyMotion video and then automatically sets video thumbnail as the featured image for the post.

See our guide on how to add thumbnails for YouTube videos in WordPress.

9. Featured Video Plus

Featured Video Plus

If you run a site where your main content is in video format, then you might want to set featured videos instead of featured images. Featured Videos Plugin allows you to easily add YouTube, Vimeo, or DailyMotion videos as featured videos.

The plugin will display your featured video in your WordPress theme where it displays featured images. See our tutorial on how to add featured video thumbnails in WordPress for more details.

10. Post Thumbnail Editor

Post Thumbnail Editor

Many WordPress themes automatically crop an image from the middle which ruins your featured image. Post Thumbnail Editor plugin allows you to edit featured images and crop them inside WordPress.

You can then use your cropped image as the featured image. See our tutorial on how to crop and edit WordPress post thumbnails for detailed instructions.

11. Default Fallback Featured Image in WordPress

An easier way to display a placeholder image for posts that do not have a featured image is by adding a default fallback featured image. Beginners can use the Default Featured Image plugin. But if you want to do it without installing a plugin, then here is what you need to do.

Simply upload your default image to your theme’s images folder and rename it to default-image.jpg. Now you will need to edit your theme files and in templates where it displays post thumbnail you will need to replace it with this code.

<?php if ( has_post_thumbnail() ) {
the_post_thumbnail();
} else { ?>
<img src="<?php bloginfo('template_directory'); ?>/images/default-image.jpg" alt="<?php the_title(); ?>" />
<?php } ?>

For a more detailed explanation check out our tutorial on how to set a default fallback image for WordPress post thumbnail.

12. Fallback Featured Image by Category

Fallback featured image based on category

One problem with setting up a single image as the default fallback featured image is that one image does not fit all posts. However, if you set a fallback featured image based on post’s category, then it can solve that problem.

First you would need to create your category images. Then upload all category images to WordPress using the default media uploader. This will allow WordPress to prepare image sizes used by your theme. Now you need to download all category images and their sizes to your computer.

Create a new folder and name it category-images. Upload this folder to /wp-content/uploads/ directory on your website using FTP. Finally, you need to add this code in your theme files where post thumbnails are displayed.

<?php if ( has_post_thumbnail() ) : ?>

<div class="entry-thumbnail">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
</div>

<?php else : 
$category = get_the_category(); 
?>
<div class="entry-thumbnail">
<a href="<?php the_permalink(); ?>"><img src="<?php bloginfo('url'); ?>/wp-content/uploads/category-images/<?php echo $category[0]->category_nicename ; ?>-150x150.jpg" alt="<?php the_title(); ?>" /></a>
</div>

<?php endif; ?>

For more detailed explanation, take a look at our tutorial on how to set fallback featured image based on category in WordPress.

13. Post Thumbnails in WordPress RSS Feeds

By default, WordPress does not display featured images or post thumbnails in RSS feeds. However, this can be easily resolved by adding this simple code snippet in your theme’s functions.php file or a site-specific plugin.

function rss_post_thumbnail($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = '<p>' . get_the_post_thumbnail($post->ID) .
'</p>' . get_the_content();
}
return $content;
}
add_filter('the_excerpt_rss', 'rss_post_thumbnail');
add_filter('the_content_feed', 'rss_post_thumbnail');

Troubleshooting Featured Images and Post Thumbnail Issues in WordPress

Post thumbnails and featured images are handled by WordPress media library. Many issues related to the display of featured images in WordPress can be solved by solutions described in our troubleshooting guide on how to fix common image issues in WordPress. However, there are some specific issues that you may come across.

14. Regenerate Thumbnails

When you upload an image, WordPress automatically stores several copies of the same image in different sizes. Some of these sizes are defined by your theme and used as post thumbnail or featured image.

However, if you change your WordPress theme and the new theme uses a different size, then your older posts will show the wrong post thumbnail size.

Regenerate Thumbnails resolves this issue by generating new image sizes in WordPress. For detailed instructions take a look at our tutorial on how to regenerate thumbnails and create new image sizes in WordPress.

15. Fix Facebook Incorrect Thumbnail Issue in WordPress

Facebook incorrect thumbnail issue

One of the most common issues with featured images in WordPress is that sometimes Facebook does not pick up the right image when a post is shared. To resolve this issue, you can use Yoast’s WordPress SEO plugin’s social feature to explicitly tell Facebook which image to use as post thumbnail.

See our tutorial on how to fix Facebook incorrect thumbnail issue in WordPress.

We hope this article helped you find the best WordPress featured image plugins and tutorials. You may also want to take a look at our list of 10 most wanted category hacks and plugins for WordPress.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

442 Shares
Share
Tweet
Share
Popular on WPBeginner Right Now!
  • Why Build Your Email List Today

    Revealed: Why Building Your Email List is so Important Today!

  • Google Analytics in WordPress

    How to Install Google Analytics in WordPress for Beginners

  • How to Properly Move Your Blog from WordPress.com to WordPress.org

  • Checklist

    Checklist: 15 Things You MUST DO Before Changing WordPress Themes

About the Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi. Page maintained by Syed Balkhi.

The Ultimate WordPress Toolkit

15 Comments

Leave a Reply
  1. Galadriel says:
    Feb 15, 2018 at 7:44 am

    Is there a plugin to Bulk-edit featured image? I need to apply a single image to multiple posts. A quick edit option for featured image that appears in the bulk-editor is what I’m searching for. Any tips or leads are much appreciated:-)

    Reply
  2. Stefano says:
    Feb 9, 2018 at 9:11 am

    You can use alternatively the plugin “Thumbnails” which autoset the featured images but, more important, generates pixel perfect crops without fill the media library of thumbnail versions and putting the cropped version in a cache folder.

    Reply
  3. StefanS says:
    Aug 15, 2017 at 6:07 am

    Hello,

    just want to say this is a great tutorial, and great article, but i have a little problem that, for which i find no solution here. Here is what it goes – on a website i administrate and have made using WordPress, i have a special page which is directing to a page with arranged products by there discount. We popuralize the website by using Facebook. So when i create a post in FB with a link to that specific page(with the discounts), the post displays no image.

    From the creators of the premium theme, i’v learned(or at least they told me that), i have to use a SEO plugin to set image for the page. I browsed the internet but found alomost nothing specific how to do that.

    Any ideas ?

    Thx in advance

    Reply
  4. Steven Denger says:
    Jul 15, 2017 at 11:47 pm

    The Post Thumbnail Editor is total junk and does not even begin to work. Dont waste your time like I did.

    Reply
  5. Annapurna says:
    May 12, 2017 at 5:08 am

    Do we have a plugin that generates a preview image for posts?
    Like we have a preview option, can we generate a image of the preview?

    Reply
  6. JAkzam says:
    Jan 14, 2016 at 8:06 pm

    You forgot Post List Featured Image

    Reply
  7. gerald says:
    Jan 1, 2016 at 3:33 am

    just learning what this is.
    will decide later if it is something for me.

    Reply
  8. Feldspar says:
    Oct 23, 2015 at 4:00 pm

    Have you run across any Featured Image plugins that will let you assign a url link to them?
    I’m currently using a theme that doesn’t support this and need the featured image to be clickable in the single post layout.

    Reply
  9. adrie says:
    May 25, 2015 at 5:22 am

    good article, thanks bro.

    Reply
  10. Dan says:
    May 24, 2015 at 9:00 pm

    I have enjoyed reading WPbeginner for the past 6 months or so, and have been learning a lot from you the experts.

    I run a small website, since July 2014, and I am still learning a lot every day. I chose WP 2012 theme, and I hate the 404 page on this theme. You have given a few times suggestion on how to make it work for me, and give the reader other options, so he doesn’t log off, but my problem is that I have no idea how to add anything onto a php file, nor where would I add anything onto a php file.

    Is there any other way to do the above, with out dealing with php?

    Thank you for all the good ideas on this blog, you are doing a great job.

    Dan

    Reply
    • WPBeginner Support says:
      May 27, 2015 at 12:58 pm

      There are some plugins to create custom 404 pages but they are not very good.

      Reply
  11. LippyKitten says:
    May 22, 2015 at 7:24 am

    Soliloquy is a paid plugin and the addon you mention Featured Content is categorised as an advanced addon and according to the Soliloquy website:

    “Advanced addons come with the purchase of a Developer or greater Soliloquy license.”

    So to use the addon you recommend it would cost $99 (developer) or $249 (master) for a licence!

    What WordPress beginner is going to fork out that much money?

    This is not the first time you’ve recommended expensive services and I think it’s very misleading to newbies and inexperienced WordPress users.

    Your site focuses on WordPress Beginners yet most of the time you write about or recommend expensive plugins. Ok, they maybe the best but would it not be more fitting for WPBeginner to showcase the best free plugins or at least if you insist on continuing these posts highlight free alternatives after the paid (expensive) version review?

    If you want to recommend expensive plugins then you should either rename your site or open a sister site where these expensive recommendations would be more suited.

    Reply
    • WPBeginner Support says:
      May 22, 2015 at 5:32 pm

      Thanks for your feedback. However, if you look at the post there are 13 other plugins and most of them are free. We only recommend paid plugins or services that we have used ourselves or the plugins and tools that provide a specific feature not offered by currently available free plugins.

      On the other hand, many of our beginner users are actually running small and medium sized business websites using WordPress. Those users can afford these plugins. We try to maintain a balance between free and paid plugins.

      Reply
  12. fiftarina says:
    May 21, 2015 at 9:51 pm

    Wow, these are all very useful plugins. I love no 10 (btw, you have two no 10 on your post) that allows for cropping manually, featured image column, and feature image by category. Will definitely add them into my plugin collection.

    Reply
    • WPBeginner Support says:
      May 24, 2015 at 7:31 pm

      Thanks for pointing out the mistake. We have fixed it.

      Reply

Leave a Reply Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

Over 600,000+ Readers

Get fresh content from WPBeginner

Featured WordPress Plugin
OptinMonster
OptinMonster
Convert website visitors into email subscribers. Learn More »
How to Start a Blog How to Start a Blog
I need help with ...
Starting a
Blog
WordPress
Performance
WordPress
Security
WordPress
SEO
WordPress
Errors
Building an
Online Store
Useful WordPress Guides
    • 7 Best WordPress Backup Plugins Compared (Pros and Cons)
    • How to Fix the Error Establishing a Database Connection in WordPress
    • Why You Need a CDN for your WordPress Blog? [Infographic]
    • 25 Legit Ways to Make Money Online Blogging with WordPress
    • Self Hosted WordPress.org vs. Free WordPress.com [Infograph]
    • Free Recording: WordPress Workshop for Beginners
    • 24 Must Have WordPress Plugins for Business Websites
    • How to Properly Move Your Blog from WordPress.com to WordPress.org
    • 5 Best Contact Form Plugins for WordPress Compared
    • Which is the Best WordPress Popup Plugin? (Comparison)
    • Best WooCommerce Hosting in 2018 (Comparison)
    • How to Fix the Internal Server Error in WordPress
    • How to Install WordPress - Complete WordPress Installation Tutorial
    • Why You Should Start Building an Email List Right Away
    • How to Properly Move WordPress to a New Domain Without Losing SEO
    • How to Choose the Best WordPress Hosting for Your Website
    • How to Choose the Best Blogging Platform (Comparison)
    • WordPress Tutorials - 200+ Step by Step WordPress Tutorials
    • 5 Best WordPress Ecommerce Plugins Compared
    • 5 Best WordPress Membership Plugins (Compared)
    • 7 Best Email Marketing Services for Small Business (2018)
    • Which is the Best WordPress Slider? Performance + Quality Compared
    • The Truth About Shared WordPress Web Hosting
    • When Do You Really Need Managed WordPress Hosting?
    • 5 Best Drag and Drop WordPress Page Builders Compared
    • How to Switch from Blogger to WordPress without Losing Google Rankings
    • How to Properly Switch From Wix to WordPress (Step by Step)
    • How to Properly Move from Weebly to WordPress (Step by Step)
    • Do You Really Need a VPS? Best WordPress VPS Hosting Compared
    • How to Properly Move from Squarespace to WordPress
    • 5 Best VPN Services for WordPress Users (Compared)
    • HostGator Review - An Honest Look at Speed & Uptime (2018)
    • SiteGround Reviews from 1032 Users & Our Experts (2018)
    • Bluehost Review from Real Users + Performance Stats (2018)
    • How Much Does It Really Cost to Build a WordPress Website?
    • How to Start a Podcast with WordPress (Step by Step)
    • How to Choose the Best Domain Name (8 Tips and Tools)
    • How to Setup a Professional Email Address with Google Apps and Gmail
    • How to Install Google Analytics in WordPress for Beginners
    • How to Move WordPress to a New Host or Server With No Downtime
    • Why is WordPress Free? What are the Costs? What is the Catch?
    • How to Make a Website in 2018 – Step by Step Guide
Deals & Coupons (view all)
CSSIgniter
CSSIgniter Coupon
Get 30% off on the entire CSSIgniter Themes collection.
HostGator
HostGator Coupon
Get 60% OFF HostGator (the same company that WPBeginner uses).
Featured In
About WPBeginner®

WPBeginner is a free WordPress resource site for Beginners. WPBeginner was founded in July 2009 by Syed Balkhi. The main goal of this site is to provide quality tips, tricks, hacks, and other WordPress resources that allows WordPress beginners to improve their site(s).

Site Links
  • About Us
  • Contact Us
  • FTC Disclosure
  • Privacy Policy
  • Terms of Service
  • Free Blog Setup
Our Sites
  • OptinMonster
  • MonsterInsights
  • WPForms
  • List25
  • Awesome Motive
  •  

Copyright © 2009 - 2018 WPBeginner LLC. All Rights Reserved. WPBeginner® is a registered trademark.

WordPress hosting by HostGator | WordPress CDN by MaxCDN | WordPress Security by Sucuri.