Title: Featured Image Column
Author: Austin
Published: <strong>2011 年 9 月 14 日</strong>
Last modified: 2024 年 11 月 29 日

---

搜尋外掛

![](https://ps.w.org/featured-image-column/assets/banner-772x250.png?rev=3199603)

這個外掛**並未在最新的 3 個 WordPress 主要版本上進行測試**。開發者可能不再對這個
外掛進行維護或提供技術支援，並可能會與更新版本的 WordPress 產生使用上的相容性問題。

![](https://ps.w.org/featured-image-column/assets/icon.svg?rev=3199603)

# Featured Image Column

 由 [Austin](https://profiles.wordpress.org/austyfrosty/) 開發

[下載](https://downloads.wordpress.org/plugin/featured-image-column.zip)

 * [詳細資料](https://tw.wordpress.org/plugins/featured-image-column/#description)
 * [使用者評論](https://tw.wordpress.org/plugins/featured-image-column/#reviews)
 *  [安裝方式](https://tw.wordpress.org/plugins/featured-image-column/#installation)
 * [開發資訊](https://tw.wordpress.org/plugins/featured-image-column/#developers)

 [技術支援](https://wordpress.org/support/plugin/featured-image-column/)

## 外掛說明

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 the `featured\_image\_column\_init` action
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](https://austin.passy.co/wordpress-plugins/featured-image-column/)

## 螢幕擷圖

[⌊Post edit.php screen.⌉⌊Post edit.php screen.⌉[

Post edit.php screen.

## 安裝方式

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.

## 使用者評論

![](https://secure.gravatar.com/avatar/9b35fa723b94acb664c4a0aa97f2892c74279d0c7bf5f358da20514e0aa01b10?
s=60&d=retro&r=g)

### 󠀁[Great plugin !](https://wordpress.org/support/topic/great-plugin-17918/)󠁿

 [kylomylo](https://profiles.wordpress.org/kylomylo/) 2018 年 6 月 10 日

Wordpress 4.9.6 and it works fine! Thanks!

 [ 閱讀全部 11 則使用者評論 ](https://wordpress.org/support/plugin/featured-image-column/reviews/)

## 參與者及開發者

以下人員參與了開源軟體〈Featured Image Column〉的開發相關工作。

參與者

 *   [ Austin ](https://profiles.wordpress.org/austyfrosty/)
 *   [ DH-Shredder ](https://profiles.wordpress.org/dh-shredder/)
 *   [ MartyThornley ](https://profiles.wordpress.org/martythornley/)
 *   [ Chris Jean ](https://profiles.wordpress.org/chrisjean/)

[將〈Featured Image Column〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/featured-image-column)

### 對開發相關資訊感興趣？

任何人均可[瀏覽程式碼](https://plugins.trac.wordpress.org/browser/featured-image-column/)、
查看 [SVN 存放庫](https://plugins.svn.wordpress.org/featured-image-column/)，或透過
[RSS](https://plugins.trac.wordpress.org/log/featured-image-column/?limit=100&mode=stop_on_copy&format=rss)
訂閱[開發記錄](https://plugins.trac.wordpress.org/log/featured-image-column/)。

## 變更記錄

#### Version 1.1.0 (2024/11/29)

 * Tested up WordPress 6.7.1.
 * Added GitHub Release -> WordPress.org Action.
 * Resolve 1.0.0 Release call_user_func errors and incorrect file path(s).

#### Version 1.0.0 (2023/11/16)

 * Update code for PHP >= 8.0.
 * Update for WordPress >= 6.2.

#### Version 0.3.2 (06/26/17)

 * Missed short-array syntax updates for PHP < 5.4 compatibility.

#### Version 0.3.1 (06/26/17)

 * Fix for PHP versions < 5.4.
 * Please update your PHP versions!

#### Version 0.3 (06/25/17)

 * Code cleanup.
 * Tested with WordPress 4.8 new minimum version requirement set to 4.4.
 * Image columns work correctly when using Quick Edit now (no more collapsing)!
 * Removed use of additional wp_cache.s
 * Toggling setting controls for post types works again (turn on/off featured image
   column per post type).

#### Version 0.2.3 (04/4/15)

 * Make sure get_the_image() returns the cached image. /ht Djules

#### Version 0.2.2 (12/3/14)

 * Wow. Exactly one year to the dau since the last update!
 * Added settings to turn on/off featured image column per post type.
 * Added pre load hook `featured_image_column_init`.
 * Better custom post type column manager filter.

#### Version 0.2.1 (12/3/13)

## 中繼資料

 *  版本 **1.1.0**
 *  最後更新 **2 年前**
 *  啟用安裝數 **2,000+**
 *  WordPress 版本需求 ** 6.2 或更新版本 **
 *  已測試相容的 WordPress 版本 **6.7.5**
 *  PHP 版本需求 ** 8.0 或更新版本 **
 *  語言
 * [English (US)](https://wordpress.org/plugins/featured-image-column/)
 * 標籤:
 * [admin](https://tw.wordpress.org/plugins/tags/admin/)[column](https://tw.wordpress.org/plugins/tags/column/)
   [featured image](https://tw.wordpress.org/plugins/tags/featured-image/)
 *  [進階檢視](https://tw.wordpress.org/plugins/featured-image-column/advanced/)

## 評分

 4.8 星，滿分為 5 星

 *  [  9 個 5 星使用者評論     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=5)
 *  [  2 個 4 星使用者評論     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=4)
 *  [  0 個 3 星使用者評論     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=3)
 *  [  0 個 2 星使用者評論     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=2)
 *  [  0 個 1 星使用者評論     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/featured-image-column/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/featured-image-column/reviews/)

## 參與者

 *   [ Austin ](https://profiles.wordpress.org/austyfrosty/)
 *   [ DH-Shredder ](https://profiles.wordpress.org/dh-shredder/)
 *   [ MartyThornley ](https://profiles.wordpress.org/martythornley/)
 *   [ Chris Jean ](https://profiles.wordpress.org/chrisjean/)

## 技術支援

使用者可在技術支援論壇提出意見反應或使用問題。

 [檢視技術支援論壇](https://wordpress.org/support/plugin/featured-image-column/)

## 贊助

想要支援這個外掛的發展嗎？

 [ 贊助這個外掛 ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XQRHECLPQ46TE)