{"id":17505187,"url":"https://github.com/thefrosty/wp-featured-image-column","last_synced_at":"2026-02-14T19:32:28.128Z","repository":{"id":146157123,"uuid":"75881055","full_name":"thefrosty/wp-featured-image-column","owner":"thefrosty","description":"Adds a column to public post types edit screen where the featured image of each post will be shown (if available). ","archived":false,"fork":false,"pushed_at":"2025-12-15T15:53:18.000Z","size":714,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-18T21:27:46.038Z","etag":null,"topics":["columns","featured-image","wordpress","wordpress-plugin"],"latest_commit_sha":null,"homepage":"https://austin.passy.co/wordpress-plugins/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thefrosty.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2016-12-07T22:29:32.000Z","updated_at":"2025-12-15T15:53:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"97b17f0d-ddfc-4d71-a122-df2eeaff90ac","html_url":"https://github.com/thefrosty/wp-featured-image-column","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/thefrosty/wp-featured-image-column","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefrosty%2Fwp-featured-image-column","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefrosty%2Fwp-featured-image-column/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefrosty%2Fwp-featured-image-column/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefrosty%2Fwp-featured-image-column/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thefrosty","download_url":"https://codeload.github.com/thefrosty/wp-featured-image-column/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefrosty%2Fwp-featured-image-column/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29453434,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["columns","featured-image","wordpress","wordpress-plugin"],"created_at":"2024-10-20T02:34:27.581Z","updated_at":"2026-02-14T19:32:28.114Z","avatar_url":"https://github.com/thefrosty.png","language":"PHP","funding_links":["https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=XQRHECLPQ46TE"],"categories":[],"sub_categories":[],"readme":"# Featured Image Column \n**Contributors:** austyfrosty, DH-Shredder, MartyThornley, chrisjean,  \n**Donate link:** https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=XQRHECLPQ46TE  \n**Tags:** featured image, admin, column  \n**Requires at least:** 6.2  \n**Tested up to:** 6.7.1  \n**Stable tag:** trunk  \n**Requires PHP**: 8.0  \n\nAdds a column to public post types edit screen where the featured image of each post will be shown (if available).\n \n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://wordpress.org/plugins/featured-image-column/\"\u003e\u003cimg src=\"./.wordpress-org/banner-1544x500.png\" width=\"1544\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Description \n\nAs of version 0.2.2 you can select which post types you'd like to have the image column.\nIt simply adds a column before the title (far left) the show's the posts featured image if it's supported and exists.\n\nWant to change the default image? Simply filter you own image by using `featured_image_column_default_image`\nor filter your own CSS by using the `featured_image_column_css` filter hook.\n\n### Example actions/filters \n\n**Add support for a custom default image**\n```php\nfunction my_custom_featured_image_column_image( $image ) {\n\tif ( !has_post_thumbnail() ) {\n\t\treturn trailingslashit( get_stylesheet_directory_uri() ) . 'images/featured-image.png';\n\t}\n\n\treturn $image;\n}\nadd_filter( 'featured_image_column_default_image', 'my_custom_featured_image_column_image' );\n```\n\n**Remove support for post types** *Use the `featured_image_column_init` action hook for your filter.*\n```php\nfunction frosty_featured_image_column_init_func() {\n\tadd_filter( 'featured_image_column_post_types', 'frosty_featured_image_column_remove_post_types', 11 ); // Remove\n}\nadd_action( 'featured_image_column_init', 'frosty_featured_image_column_init_func' );\n\nfunction frosty_featured_image_column_remove_post_types( $post_types ) {\n\tforeach( $post_types as $key =\u003e $post_type ) {\n\t\tif ( 'post-type' === $post_type ) // Post type you'd like removed. Ex: 'post' or 'page'\n\t\t\tunset( $post_types[$key] );\n\t}\n\treturn $post_types;\n}\n\n```\n\nFor more question please visit [https://austin.passy.co](https://austin.passy.co/wordpress-plugins/featured-image-column/)\n\n## Installation \n\nFollow the steps below to install the plugin.\n\n1. Upload the `featured-image-column` directory to the /wp-content/plugins/ directory. OR click add new plugin in your WordPress admin.\n2. Activate the plugin through the 'Plugins' menu in WordPress.\n\n## Screenshots \n\n### 1. Post edit.php screen.\n![Post edit.php screen.](https://ps.w.org/featured-image-column/assets/screenshot-1.png)\n\n## Changelog\n\n### Version 1.1.0 (2024/11/29)\n\n* Tested up WordPress 6.7.1.\n* Added GitHub Release -\u003e WordPress.org Action.\n* Resolve 1.0.0 Release call_user_func errors and incorrect file path(s).\n\n### Version 1.0.0 (2023/11/16)\n\n* Update code for PHP \u003e= 8.0.\n* Update for WordPress \u003e= 6.2.\n\n### Version 0.3.2 (06/26/17)\n\n* Missed short-array syntax updates for PHP \u003c 5.4 compatibility.\n\n### Version 0.3.1 (06/26/17) \n\n* Fix for PHP versions \u003c 5.4.\n* Please update your PHP versions!\n\n### Version 0.3 (06/25/17) \n\n* Code cleanup.\n* Tested with WordPress 4.8 new minimum version requirement set to 4.4.\n* Image columns work correctly when using Quick Edit now (no more collapsing)!\n* Removed use of additional wp_cache.s\n* Toggling setting controls for post types works again (turn on/off featured image column per post type).\n\n### Version 0.2.3 (04/4/15) \n\n* Make sure get_the_image() returns the cached image. /ht Djules\n\n### Version 0.2.2 (12/3/14) \n\n* Wow. Exactly one year to the dau since the last update!\n* Added settings to turn on/off featured image column per post type.\n* Added pre load hook `featured_image_column_init`.\n* Better custom post type column manager filter.\n\n### Version 0.2.1 (12/3/13) \n\n* Fixed custom post type support.\n\n### Version 0.2.0 (12/2/13) \n\n* Updated version to WordPress 3.8 compatable and PHP 5.3+\n* Added new filter `featured_image_column_post_types` for post type support (add/remove).\n* Removed closing PHP.\n\n### Version 0.1.10 (9/5/13) \n\n* Fixed `PHP Deprecated:  Assigning the return value of new by reference is deprecated in /featured-image-column/featured-image-column.php on line 157`.\n\n### Version 0.1.9 (3/11/12) \n\n* Fixed repeat images per posts.\n* Added filter to style sheet, (use your own CSS to make the thumbnail bigger).\n\n### Version 0.1.8 (2/16/12) \n\n* Updated `wp_cache_set/get`\n\n### Version 0.1.7 (1/18/12) \n\n* Tried to update some code to fix repeated images.\n\n### Version 0.1.6 (11/21/11) \n\n* Code edits by Chris Jean of ithemes.com.\n\n### Version 0.1.5 (10/18/11) \n\n* Fixed latest post image showing up across all posts.\n* Reset the query check.\n\n### Version 0.1.4 (10/17/11) \n\n* Added filter for `post_type`'s, thanks to [Bill Erickson](http://wordpress.org/support/topic/plugin-featured-image-column-filter-for-post-types?replies=1)\n* Fixed error when zero posts exists (very rare).\n\n### Version 0.1.3 (10/17/11) \n\n* Added a light caching script for the images.\n* Updated a contributors .org profile name.\n\n### Version 0.1.2 (9/30/11) \n\n* Removed PHP4 constructor.\n* TODO: Fix error when no posts exists.\n\n### Version 0.1.1 (9/20/11) \n\n* Add support for public `$post_type`'s that support `'post-thumbnails'`.\n\n### Version 0.1 (9/14/11) \n\n* Initial release.\n\n## Upgrade Notice \n\n### 0.3 \nCode cleanup, compatibility updates for WordPress 4.8, quick edit no longer collapses the columns and the settings actually toggle post_types on/off!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthefrosty%2Fwp-featured-image-column","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthefrosty%2Fwp-featured-image-column","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthefrosty%2Fwp-featured-image-column/lists"}