Elegant WP.blogspot.com

14 Greatest Featured Picture Plugins and Tutorials for WordPress

14 Greatest Featured Picture Plugins and Tutorials for WordPress

Featured pictures play an vital position in most fashionable WordPress themes. When you can find beautiful royalty free images to make use of in your WordPress web site as featured pictures, there may be much more you are able to do with featured pictures. On this article, we'll present you among the finest featured picture plugins and instruments for WordPress.

Video Tutorial

Subscribe to Elegantwp

For those who don’t just like the video or want extra directions, then proceed studying.

1. Soliloquy

Soliloquy featured content slider

Soliloquy is the perfect WordPress slider plugin available on the market. It comes with a featured content material add-on that lets you simply add featured content material slider to any WordPress theme.

It robotically will get the featured picture out of your article and makes use of it because the slide along with your publish’s title and excerpt. See our tutorial on the best way to add featured content slider in WordPress for step-by-step directions.

2. Quick Featured Images

Bulk edit featured images in WordPress

Fast Featured Photographs is a robust WordPress plugin that allows you to carry out bulk modifying actions in your featured pictures. You may change, take away, or add featured pictures with bulk actions.

You may as well set a default picture for use as featured picture or instruct the plugin to robotically use the primary picture in a publish because the featured picture. Check out our tutorial on the best way to bulk edit featured images in WordPress for extra detailed directions.

3. Multiple Post Thumbnails

Multiple Featured Images

Because the identify suggests, this plugin lets you add a number of featured pictures or publish thumbnails in your WordPress posts. You have to to edit your theme recordsdata to show the secondary featured picture.

See this tutorial on the best way to add multiple post thumbnails in WordPress for step-by-step directions.

4. Require Featured Image

Require Featured Image

Many WordPress themes are designed in a method that your posts look unusual with no featured picture. Generally you or different authors in your web site could neglect so as to add featured picture for a publish.

This plugin merely stops authors in your web site from publishing a publish with no featured picture. Check out the best way to require featured images for posts in WordPress for extra directions.

5. Featured Image Column

Featured image column

By default, WordPress doesn't inform you whether or not a publish has featured picture or not till you open the publish within the publish editor. This plugin merely provides a featured picture column in your WordPress posts web page.

It makes it straightforward so that you can shortly see featured pictures set for posts. The plugin works for all publish sorts, and you'll exclude publish sorts the place you don’t need to show a featured picture column. See our tutorial on the best way to add a featured image column in WordPress for particulars.

6. Default Featured Image

Default Featured Image

It's attainable to show a default featured picture in WordPress by including code into your WordPress theme. Nevertheless, many rookies don’t need to edit their theme. Default Featured Picture plugin gives a straightforward method to do this.

Merely add a default featured picture from WordPress media library. To study extra, check out our tutorial on the best way to set a default featured image in WordPress using a plugin.

7. Easy Add Thumbnail

Establishing featured pictures for previous posts that wouldn't have a featured picture might be tough. Simple Add Thumbnail plugin solves this downside by robotically establishing the primary picture in a publish as featured picture. Even if you happen to or different authors in your web site neglect to set a featured picture, this plugin will robotically set one for you.

For older posts, it units a featured picture when the publish is seen on the front-end. See our tutorial on the best way to add post attachment as featured image in WordPress.

8. Video Thumbnails

Video Thumbnails

In case you are making a video web site with WordPress, then chances are you'll need to present video thumbnails as featured pictures to your posts. Video Thumbnails plugin robotically checks your posts for a YouTube, Vimeo, or DailyMotion video after which robotically units video thumbnail because the featured picture for the publish.

See our information on the best way to add thumbnails for YouTube videos in WordPress.

9. Featured Video Plus

Featured Video Plus

For those who run a web site the place your predominant content material is in video format, then you definitely may need to set featured movies as a substitute of featured pictures. Featured Movies Plugin lets you simply add YouTube, Vimeo, or DailyMotion movies as featured movies.

The plugin will show your featured video in your WordPress theme the place it shows featured pictures. See our tutorial on the best way to add featured video thumbnails in WordPress for extra particulars.

10. Post Thumbnail Editor

Post Thumbnail Editor

Many WordPress themes robotically crop a picture from the center which ruins your featured picture. Publish Thumbnail Editor plugin lets you edit featured pictures and crop them inside WordPress.

You may then use your cropped picture because the featured picture. See our tutorial on the best way to crop and edit WordPress post thumbnails for detailed directions.

11. Default Fallback Featured Image in WordPress

A better method to show a placeholder picture for posts that wouldn't have a featured picture is by including a default fallback featured picture. Newbies can use the Default Featured Picture plugin. However if you wish to do it with out putting in a plugin, then here's what it is advisable to do.

Merely add your default picture to your theme’s pictures folder and rename it to default-image.jpg. Now you have to to edit your theme recordsdata and in templates the place it shows publish thumbnail you have to to interchange it with this code.

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

For a extra detailed clarification take a look at our tutorial on the best way to set a default fallback image for WordPress post thumbnail.

12. Fallback Featured Image by Category

Fallback featured image based on category

One downside with establishing a single picture because the default fallback featured picture is that one picture doesn't match all posts. Nevertheless, if you happen to set a fallback featured picture primarily based on publish’s class, then it could possibly resolve that downside.

First you would wish to create your class pictures. Then add all class pictures to WordPress utilizing the default media uploader. This may enable WordPress to arrange picture sizes utilized by your theme. Now it is advisable to obtain all class pictures and their sizes to your pc.

Create a brand new folder and identify it category-images. Add this folder to /wp-content/uploads/ listing in your web site utilizing FTP. Lastly, it is advisable to add this code in your theme recordsdata the place publish 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 : 
$class = get_the_category(); 
?>
<div class="entry-thumbnail">
<a href="<?php the_permalink(); ?>"><img src="<?php bloginfo('url'); ?>/wp-content/uploads/category-images/<?php echo $class[0]->category_nicename ; ?>-150x150.jpg" alt="<?php the_title(); ?>" /></a>
</div>

<?php endif; ?>

For extra detailed clarification, check out our tutorial on the best way to set fallback featured image based on category in WordPress.

13. Post Thumbnails in WordPress RSS Feeds

By default, WordPress doesn't show featured pictures or publish thumbnails in RSS feeds. Nevertheless, this may be simply resolved by including this straightforward code snippet in your theme’s features.php file or a site-specific plugin.

perform rss_post_thumbnail($content material) 
add_filter('the_excerpt_rss', 'rss_post_thumbnail');
add_filter('the_content_feed', 'rss_post_thumbnail');

Troubleshooting Featured Photographs and Publish Thumbnail Points in WordPress

Publish thumbnails and featured pictures are dealt with by WordPress media library. Many points associated to the show of featured pictures in WordPress might be solved by options described in our troubleshooting information on the best way to fix common image issues in WordPress. Nevertheless, there are some particular points that you could be come throughout.

14. Regenerate Thumbnails

Whenever you add a picture, WordPress robotically shops a number of copies of the identical picture in several sizes. A few of these sizes are outlined by your theme and used as publish thumbnail or featured picture.

Nevertheless, if you happen to change your WordPress theme and the brand new theme makes use of a unique dimension, then your older posts will present the flawed publish thumbnail dimension.

Regenerate Thumbnails resolves this difficulty by producing new picture sizes in WordPress. For detailed directions check out our tutorial on the best way 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 crucial frequent points with featured pictures in WordPress is that generally Fb doesn't choose up the appropriate picture when a publish is shared. To resolve this difficulty, you should use Yoast’s WordPress web optimization plugin’s social characteristic to explicitly inform Fb which picture to make use of as publish thumbnail.

See our tutorial on the best way to fix Facebook incorrect thumbnail issue in WordPress.

We hope this text helped you discover the perfect WordPress featured picture plugins and tutorials. You might also need to check out our listing of 10 most wanted category hacks and plugins for WordPress.

For those who favored this text, then please subscribe to our YouTube Channel for WordPress video tutorials. You may as well discover us on Twitter and Facebook.

WordPress Plugins