AI Verified

Name

ID - media

About

Zobrazí ID každého souboru v mediích

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

suky-snippets

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.

History

Last modified:

23/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

ID - media

 
                    
1// Show media ID in media library overview
2function column_id($columns) {
3 $columns['colID'] = __('ID');
4 return $columns;
5}
6add_filter( 'manage_media_columns', 'column_id' );
7function column_id_row($columnName, $columnID){
8 if($columnName == 'colID'){
9 echo $columnID;
10 }
11}
12add_filter( 'manage_media_custom_column', 'column_id_row', 10, 2 );

0

Related Snippets

Please see some snippets below related to this snippet..

General

AI Verified

0

WordPress Version Remover

Added: 1 year ago

Last Updated: 1 year ago

Remove WordPress Version (generator) from the source code of the website.

General

AI Verified

0

Complete hide Comments

Added: 10 months ago

Last Updated: 10 months ago

General

AI Verified

1

Disable author pages

Added: 1 year ago

Last Updated: 1 year ago

This snippet will disable the auto-generated author pages

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

General

AI Verified

1

Disable admin bar

Added: 9 months ago

Last Updated: 2 months ago

Turns off the WordPress admin bar for everyone except administrators. This is a sample snippet. Feel free to use it, edit it, or remove it.

General

AI Verified

0

Make upload filenames lowercase

Added: 9 months ago

Last Updated: 9 months ago

Makes sure that image and file uploads have lowercase filenames. This is a sample snippet. Feel free to use it, edit it, or remove it.

General

AI Verified

0

Allow smilies

Added: 9 months ago

Last Updated: 9 months ago

Allows smiley conversion in obscure places. This is a sample snippet. Feel free to use it, edit it, or remove it.