Title: Featured Image Column
Author: Austin
Published: <strong>14. september, 2011</strong>
Last modified: 14. august, 2026

---

Søk i utvidelser

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

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

# Featured Image Column

 Av [Austin](https://profiles.wordpress.org/austyfrosty/)

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

 * [Detaljer](https://nb.wordpress.org/plugins/featured-image-column/#description)
 * [Omtaler](https://nb.wordpress.org/plugins/featured-image-column/#reviews)
 *  [Installering](https://nb.wordpress.org/plugins/featured-image-column/#installation)
 * [Utvikling](https://nb.wordpress.org/plugins/featured-image-column/#developers)

 [Brukerstøtte](https://wordpress.org/support/plugin/featured-image-column/)

## Beskrivelse

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

**Change thumbnail size**

    ```
    function my_custom_featured_image_size(mixed $size, int $post_id): mixed {
        if (in_array($post_id, [1, 5, 23], true)) {
            return [65. 65];
        }

        return $size;
    }
    add_filter('featured_image_post_thumbnail_size', 'my_custom_featured_image_size', 10, 2);
    ```

**Add support for a custom default image**

    ```
    function my_custom_featured_image_column_image(string $image, int $post_id): string {
        if (in_array($post_id, [1, 5, 23], true)) {
            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', 10, 2);
    ```

**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/)

## Skjermbilder

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

Post edit.php screen.

## Installasjon

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.

## Vurderinger

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

### 󠀁[Loads full image!](https://wordpress.org/support/topic/loads-full-image/)󠁿

 [phalancs](https://profiles.wordpress.org/phalancs/) 7. juli, 2026 2 svar

I mean, its a tiny plugin, but why in the world would you load the full image size?
I mean come on. At least load the thumbnail.

![](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/) 10. juni, 2018

Wordpress 4.9.6 and it works fine! Thanks!

 [ Les alle 12 vurderinger ](https://wordpress.org/support/plugin/featured-image-column/reviews/)

## Bidragsytere og utviklere

«Featured Image Column» er programvare med åpen kildekode. Følgende personer har
bidratt til denne utvidelsen:

Bidragsytere

 *   [ 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/)

[Oversett «Featured Image Column» til ditt språk.](https://translate.wordpress.org/projects/wp-plugins/featured-image-column)

### Interessert i utvikling?

[Bla gjennom koden](https://plugins.trac.wordpress.org/browser/featured-image-column/),
sjekk ut [SVN-repositoriet](https://plugins.svn.wordpress.org/featured-image-column/),
eller abonner på [utviklingsloggen](https://plugins.trac.wordpress.org/log/featured-image-column/)
med [RSS](https://plugins.trac.wordpress.org/log/featured-image-column/?limit=100&mode=stop_on_copy&format=rss).

## Endringslogg

#### Version 1.3.0 (2026/08/14)

 * New compressed default image: (before) 4.2 K  (after) 235 B
 * Add: filter to allow modification of post_thumbnail size `featured_image_post_thumbnail_size`(
   defaults to [50,50]).
 * Add: pass (int) post_id to default image filter as second param.
 * Qualifier(s) can be replaced with an import.
 * Fix: The (readme) Contributors field should only contain WordPress.org usernames.
 * Fix: The (readme) License field is missing. A GPLv2 or later compatible license
   should be specified.

#### Version 1.2.0 (2026/07/24)

 * Tested upto WordPress 7.1.0.
 * Added width/height value to `get_the_post_thumbnail`.

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

 * Tested upto 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)

## Meta

 *  Versjon **1.2.0**
 *  Sist oppdatert **2 dager siden**
 *  Aktive installasjoner **2 000+**
 *  WordPress-versjon ** 6.2 eller nyere **
 *  Testet opp til **7.1.0**
 *  PHP-versjon ** 8.0 eller nyere **
 *  Språk
 * [English (US)](https://wordpress.org/plugins/featured-image-column/)
 * Stikkord
 * [admin](https://nb.wordpress.org/plugins/tags/admin/)[column](https://nb.wordpress.org/plugins/tags/column/)
   [featured image](https://nb.wordpress.org/plugins/tags/featured-image/)
 *  [Avansert visning](https://nb.wordpress.org/plugins/featured-image-column/advanced/)

## Vurderinger

 4.5 av 5 stjerner.

 *  [  9 5-star reviews     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=5)
 *  [  2 4-star reviews     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=2)
 *  [  1 1-star review     ](https://wordpress.org/support/plugin/featured-image-column/reviews/?filter=1)

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

[Se alle omtalene](https://wordpress.org/support/plugin/featured-image-column/reviews/)

## Bidragsytere

 *   [ 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/)

## Brukerstøtte

Har du noe å si? Trenger du hjelp?

 [Vis brukerstøtteforumet](https://wordpress.org/support/plugin/featured-image-column/)

## Donér

Vil du støtte videreutviklingen av denne utvidelsen?

 [ Doner til denne utvidelsen ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XQRHECLPQ46TE)