Featured Image Column

Featured Image Column plugin.

Error connecting to WordPress.org.

18 Comments

    • 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!

  1. 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).

  2. 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.

  3. 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

  4. 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

  5. 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.

  6. 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

  7. 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.

  8. 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.