AI Verified

Name

Add featured image to post list

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

lowthian

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: Not Specified

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

Website/ Profile URL:

https://www.lowthiandesign.com

History

Last modified:

25/11/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Add featured image to post list

 
                    
1// Add featured image thumbnail column to admin post list
2function add_featured_image_column($columns) {
3 $columns['featured_image'] = __('Featured Image', 'text-domain');
4 return $columns;
5}
6add_filter('manage_posts_columns', 'add_featured_image_column');
7 
8// Display featured image thumbnail in admin post list
9function display_featured_image_column($column, $post_id) {
10 if ($column === 'featured_image') {
11 echo get_the_post_thumbnail($post_id, array(50, 50));
12 }
13}
14add_action('manage_posts_custom_column', 'display_featured_image_column', 10, 2);

0

Related Snippets

Please see some snippets below related to this snippet..

General

AI Verified

0

// Securely include the Prednosti Custom Post Type if it exists

Added: 7 months ago

Last Updated: 7 months ago

General

AI Verified

0

Friends Deactivate Plugin Cache

Added: 1 month ago

Last Updated: 1 month ago

Typically the Friends plugin will cache the plugin info for an hour. This disables it.

General

AI Verified

0

Enable Shortcode Execution in Text Widgets

Added: 8 months ago

Last Updated: 8 months ago

Extend the default Text Widget with shortcode execution.

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WordPress Admin

AI Verified

1

View update info on posts

Added: 3 weeks ago

Last Updated: 3 weeks ago

WordPress Admin

AI Verified

1

Link to clear Bunny CDN

Added: 4 months ago

Last Updated: 4 months ago

I wanted a way for my clients to have a one click "Clear Bunny CDN" without having to go into other settings. Worked with AI and BunnyCDN support on this.

General

AI Verified

0

Gravity to Stripe Description

Added: 8 months ago

Last Updated: 8 months ago