Easy Featured Images

plugin banner

Allows you to add and remove featured images from admin post lists. Works with AJAX and magic for your image assignment pleasure.

Author:Daniel Pataki (profile at wordpress.org)
WordPress version required:3.5.0
WordPress version tested:4.2.1
Plugin version:1.2.0
Added to WordPress repository:14-03-2015
Last updated:05-05-2015
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:94
Rated by:7
Plugin URI:
Total downloads:9 207
Active installs:1 000+
plugin download
Click to start download

Easy Featured Images allows you to assign featured images to posts much more efficiently, especially if you have a number of posts to go through. Normally you have to visit the edit page of each post, launch the media window and upload/assign the image.

With the plugin enabled you can do this from the post list screen. Everything words via AJAX so images are assigned instantly, without having to wait for pages to load. It uses the regular WordPress media box making the plugin 100% WordPress awesome.

Easy Featured Images also support WooCommerce, yay!

You can use the efi/post_types filter to modify the array of post types that the plugin's functionality is assigned to. Return the final list of post types you want the plugin to be applied to:

add_filter( 'efi/post_types', 'my_post_type_images' );
function my_post_type_images( $post_types ) {
    unset( $post_types['page'] );
}

As of 1.2.0 the plugin has an efi/settings filter which allows developers to change some settings. For now the only setting available is show_thumbnail_preview which can be set to true or false.

add_filter( 'efi/settings', 'my_efi_settings' );
function my_efi_settings( $settings ) {
    $settings['show_thumbnail_preview'] = false;
    return $settings
}

Thanks

  • Tom McFarlin for the basis of the Javascript that initiates the media uploader
  • Cole Patrick for the fantastic photo for the plugin's featured image
  • Thomas Meyer for the German translation.

Screenshots
ChangeLog