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

How to Add a Featured Image Column to Your WordPress Admin Panel

Last updated on by
Elegant Themes
How to Add a Featured Image Column to Your WordPress Admin Panel

For those of you who do not know how to add post thumbnails (featured images) yet you should read our article on how to add post thumbnails in WordPress. If you already know how to do this then you will understand how useful it would be to have all of your featured images added to the ‘edit posts’ page rather than having to open each post individually to see them. This is exactly what the Featured Image Column Plugin does.

To get started you need to install and activate the Featured Image Column plugin. There is no options screen for this plugin. All it does is add an extra column before on the ‘edit posts’ page to display the featured image if it exists.

Featured Image Column

You can change the default image by using the following code in your functions.php file:

function my_custom_featured_image_column_image( $image ) {
    if ( !has_post_thumbnail() )
        return trailingslashit( get_stylesheet_directory_uri() ) . 'images/no-featured-image';
}
add_filter( 'featured_image_column_default_image', 'my_custom_featured_image_column_image' );

Download the Featured Image Column Plugin

This post is presented by the custom sticker printing company, offering an array of printed marketing materials.

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

WPBeginner's Video Icon
Our HD-Quality tutorial videos for WordPress Beginners will teach you how to use WordPress to create and manage your own website in about an hour. Get started now »

Comments

  1. jaledwith says:

    The code to change the default image does not seem to be working, at least not for me. Otherwise I think it’s a great plugin.

  2. EzyBlogger says:

    @marketingm8 Thanks Peter. Happy Wednesday :)

Add a Comment

We're glad you have chosen to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and all links are nofollow. Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.