Linux 软件免费装
Banner图

Featured Image Column

开发者 austyfrosty
DH-Shredder
MartyThornley
chrisjean
更新时间 2026年8月15日 00:20
捐献地址: 去捐款
PHP版本: 8.0 及以上
WordPress版本: 7.1.0

标签

admin column featured image

下载

0.1.5 0.1.6 0.2.3 1.1.0 0.3.2 1.2.0 1.2.1 1.3.0

详情介绍:

As of version 0.2.2 you can select which post types you'd like to have the image column. It simply adds a column before the title (far left) the show's the posts featured image if it's supported and exists. Want to change the default image? Simply filter you own image by using featured_image_column_default_image or filter your own CSS by using the featured_image_column_css filter hook. Example actions/filters 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'; } return $image; } add_filter( 'featured_image_column_default_image', 'my_custom_featured_image_column_image' ); **Remove support for post types** *Use thefeatured_image_column_initaction hook for your filter.* function frosty_featured_image_column_init_func() { add_filter( 'featured_image_column_post_types', 'frosty_featured_image_column_remove_post_types', 11 ); // Remove } add_action( 'featured_image_column_init', 'frosty_featured_image_column_init_func' ); function frosty_featured_image_column_remove_post_types( $post_types ) { foreach( $post_types as $key => $post_type ) { if ( 'post-type' === $post_type ) // Post type you'd like removed. Ex: 'post' or 'page' unset( $post_types[$key] ); } return $post_types; } ` For more question please visit https://austin.passy.co

安装:

Follow the steps below to install the plugin.
  1. Upload the featured-image-column directory to the /wp-content/plugins/ directory. OR click add new plugin in your WordPress admin.
  2. Activate the plugin through the 'Plugins' menu in WordPress.

升级注意事项:

1.1.1 Required PHP >= 8.0

更新日志:

Version 1.2.0 (2026/07/24) Version 1.1.0 (2024/11/29) Version 1.0.0 (2023/11/16) Version 0.3.2 (06/26/17) Version 0.3.1 (06/26/17) Version 0.3 (06/25/17) Version 0.2.3 (04/4/15) Version 0.2.2 (12/3/14) Version 0.2.1 (12/3/13)