Featured Image Column

Featured Image Column plugin.

Error connecting to WordPress.org.

18 Comments

Hi Just updated –
my site is

korekauai.com

The FI column now displays the same image for each post.

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:

$image = wp_cache_get( 'featured_column_thumbnail', 'post' );

to:

$image = wp_cache_get( 'featured_column_thumbnail');

Great plugin frosty – seems unique, and just what I was after.

(And thanks too, to Johan for the fix – works perfectly).

Federico Brigante

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.php action so I had to replace it with a more complete detection. This way I also was able to get rid of the load() method.

Lastly, "Assigning the return value of `new` by reference is deprecated on line 158" so I left the "&" out.

Federico Brigante

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.php action so I had to replace it with a more complete detection. This way I also was able to get rid of the load() 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

BandonRandon

Great Plugin, is there an easy way to apply this to custom post types. I took a quick look at the code and didn’t see anything to obvious.

BandonRandon

Just kidding, I now found the line where the post type just has to allow for a thumbnail. Sorry for the confusion.

Error in wp 3.6, after a loooong use of this plug in many configs, we have inactivate the plug for now on all updated sites.

Deprecated: Assigning the return value of new by reference is deprecated in W:\Servers\UniServer-00\www\wpcl\wp-content\plugins\featured-image-column\featured-image-column.php on line 157

John Saddington

Might make note that this blew up two sites of mine on update this morning. Having to remove them manually and revert.

Just wanted to let you know that 0.3 makes my WordPress stop working had to revert back as I only got a white screen.

An updated version was pushed out this morning. The incompatible update required PHP version >= 5.4. If you are still running PHP 5.3, I would highly suggest updating it ASAP.

The Irishman

Your update still broke my site. I FTP’d in and deleted the plugin which brought back my site. I tried to reinstall the plugin and WordPress reported an error. I am unable to control the version of PHP that my hosting provider supplies. Please fix so that it doesn’t break.

Which version? I pushed to quick updates where the first one still had a some incompatible code with PHP versions < 5.4. See version 0.3.2.

Also, please contact your host to update your PHP version!

Comments are closed.