Title: Featured Image Column
Author: Austin
Published: <strong>સપ્ટેમ્બર 14, 2011</strong>
Last modified: નવેમ્બર 29, 2024

---

પ્લગીન શોધો

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

આ પલ્ગઇન ** 2 વર્ષથી વધુમાં અપડેટ કરવામાં આવ્યો નથી **. એ કદાચ જાળવવામાં અથવા સપોર્ટેડ
નહી હોય. વર્ડપ્રેસ ના વધુ તાજેતરનાં સંસ્કરણો સાથે ઉપયોગમાં લેવાય તો સુસંગતતા મુદ્દાઓ
હોઈ શકે છે.

![](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://gu.wordpress.org/plugins/featured-image-column/#description)
 * [સમીક્ષાઓ](https://gu.wordpress.org/plugins/featured-image-column/#reviews)
 *  [સ્થાપન](https://gu.wordpress.org/plugins/featured-image-column/#installation)
 * [ડેવલપમેન્ટ](https://gu.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/) જૂન 10, 2018

Wordpress 4.9.6 and it works fine! Thanks!

 [ 11 સમીક્ષાઓ વાંચો ](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/)

[“Featured Image Column” ને તમારી ભાષામાં અનુવાદ કરો.](https://translate.wordpress.org/projects/wp-plugins/featured-image-column)

### વિકાસમાં રસ ધરાવો છો?

[કોડ બ્રાઉઝ કરો](https://plugins.trac.wordpress.org/browser/featured-image-column/),
જોવો[અસ્વીએન રેપોઝિટરીમાંથી](https://plugins.svn.wordpress.org/featured-image-column/),
અથવા સબ્સ્ક્રાઇબ કરો[ડેવલપમેન્ટ](https://plugins.trac.wordpress.org/log/featured-image-column/)
દ્વારા[આરઅસઅસ](https://plugins.trac.wordpress.org/log/featured-image-column/?limit=100&mode=stop_on_copy&format=rss).

## ચેન્જલૉગ

#### 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+**
 *  વર્ડપ્રેસ વર્ઝન ** 6.2 અથવા ઉચ્ચતર **
 *  **6.7.5** સુધી પરીક્ષણ કર્યું
 *  PHP સંસ્કરણ ** 8.0 અથવા ઉચ્ચતર **
 *  ભાષા
 * [English (US)](https://wordpress.org/plugins/featured-image-column/)
 * ટૅગ્સ:
 * [admin](https://gu.wordpress.org/plugins/tags/admin/)[column](https://gu.wordpress.org/plugins/tags/column/)
   [featured image](https://gu.wordpress.org/plugins/tags/featured-image/)
 *  [વિગતવાર દૃશ્ય](https://gu.wordpress.org/plugins/featured-image-column/advanced/)

## પૉઇન્ટ્સ

 5 માંથી 4.8 સ્ટાર.

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