
This plugin has no options. It simply adds a column before the title (far left) the show’s the posts featured image if it’s supported and/or exists.
Add a defualt image simply by filtering you own image in. Use featured_image_column_default_image or filter your own CSS by using featured_image_column_css.
Add support for a custom default image
function my_custom_featured_image_column_image( $image ) {
if ( !has_post_thumbnail() )
return trailingslashit( get_stylesheet_directory_uri() ) . 'images/featured-image.png';
}
add_filter( 'featured_image_column_default_image', 'my_custom_featured_image_column_image' );Add your own CSS to change the size of the image.
/**
* @use '.featured-image.column-featured-image img {}'
*/
function my_custom_featured_image_css() {
return trailingslashit( get_stylesheet_directory_uri() ) . 'css/featured-image.css'; //URL to your css
}
add_filter( 'featured_image_column_css', 'my_custom_featured_image_css' );For question please visit my blog @ http://austinpassy.com
Download
Latest version: Download Featured Image Column v0.1.9 [[zip]] (Downloaded: 2736 times)
FAQ
Nothing yet
Changelog
- Version 0.1.9 (3/11/12)
- Fixed repeat images per posts.
- Added filter to style sheet, (use your own CSS to make the thumbnail bigger).
- Version 0.1.8 (2/16/12)
- Updated
wp_cache_set/get
- Updated
- Version 0.1.7 (1/18/12)
- Tried to update some code to fix repeated images.
- Version 0.1.6 (11/21/11)
- Code edits by Chris Jean of ithemes.com.
- Version 0.1.5 (10/18/11)
- Fixed latest post image showing up across all posts.
- Reset the query check.
- Version 0.1.4 (10/17/11)
- Added filter for
post_type‘s, thanks to Bill Erickson - Fixed error when zero posts exists (very rare).
- Added filter for
- Version 0.1.3 (10/17/11)
- Added a light caching script for the images.
- Updated a contributors .org profile name.
- Version 0.1.2 (9/30/11)
- Removed PHP4 constructor.
- TODO: Fix error when no posts exists.
- Version 0.1.1 (9/20/11)
- Add support for public
$post_type‘s that support'post-thumbnails'.
- Add support for public
- Version 0.1 (9/14/11)
- Initial release.
Screenshots
-

Post edit.php screen.

Hi Just updated -
my site is
korekauai.com
The FI column now displays the same image for each post.
Same as user above
The FI column now displays the same image for each post.
I’m not currently able to work on a fix.
The if statement on line 124 is returning false on all entries after the first one. I just commented it out (along with the trailing curly bracket at the end of the block) and all of my thumbnails loaded as they should. True, it bypasses the featured image check, but in my tests, this isn’t a problem, and it works just fine. Hope that helps!
Would also love to see slightly larger thumbnails in the next version! Thanks for the great plug-in!
Seems to work fine if you remove “post” from line #122:
change:
to:
Great plugin frosty – seems unique, and just what I was after.
(And thanks too, to Johan for the fix – works perfectly).
Hey there, I did some work on the plugin to make it work on ajax-powered quick edits in edit.php.
get_post_type()seems to start working who-knows-when so I replaced it with$post_type = $_GET['post_type']which should always work in the admin anyway.It also seems like there is no
load-admin-ajax.phpaction so I had to replace it with a more complete detection. This way I also was able to get rid of theload()method.Lastly, "Assigning the return value of `new` by reference is deprecated on line 158" so I left the "&" out.
Hey there, I did some work on the plugin to make it work on ajax-powered quick edits in edit.php.
get_post_type()seems to start working who-knows-when so I replaced it with$post_type = $_GET['post_type']which should always work in the admin anyway.It also seems like there is no
load-admin-ajax.phpaction so I had to replace it with a more complete detection. This way I also was able to get rid of theload()method.Lastly, “Assigning the return value of `new` by reference is deprecated on line 158″ so I left the “&” out.
Here it is: http://pastebin.com/qNfNbmAa
Hello,
I want to add one more column to set the order of the featured images. is that possible? or do you have any another plugin for the same? please guide me. Its urgent for me.
Regards,
Palak