How to get the image URL of the media library quickly- WordPress Tutorial

Through this wordpress tutorial, we will add a URL column to the WordPress media library to solve this problem

When we usually use the media library image, we will upload the image to the WordPress media library, but it is difficult for us to get the link to this image. Now, through this WordPress tutorial, we will add a URL column in the WordPress media library to solve this problem.

 How to get the image URL of the media library quickly- WordPress Tutorial
As shown in the figure

In the topic root directory functions.php In file <? php Add the following code and save it.

 //Get the picture URL of the media library quickly function muc_column( $cols ) { $cols["media_url"] = "URL"; return $cols; } function muc_value( $column_name, $id ) { if ( $column_name == "media_url" ) echo '<input type="text" width="100%" onclick="jQuery(this).select();" value="'. wp_get_attachment_url( $id ). '" readonly="true" />'; } add_filter( 'manage_media_columns', 'muc_column' ); add_action( 'manage_media_custom_column', 'muc_value', 10, 2 );

The original version of the fork code snippet came from Steve Taylor's website WPSnipp.com Kevin replaced the text with an input box to which the original author added a read-only attribute.

Related recommendations

怎么快速获媒体库的图片URL? - WordPress教程-Npcink
怎么快速获媒体库的图片URL? - WordPress教程-Npcink

How can I disable automatic thumbnail clipping- WordPress Tutorial

怎么快速获媒体库的图片URL? - WordPress教程-Npcink
怎么快速获媒体库的图片URL? - WordPress教程-Npcink

How to automatically add alt tags to images- Wordpress Tutorial

course

How to hide plug-ins from the plug-in list- WordPress Tutorial

2020-8-12 17:50:32

course

How to add custom text to the login interface- WordPress Tutorial

2020-8-13 15:04:05

⚠️
Some codes and tutorials on Npcink come from the Internet, and are only for netizens to learn and exchange. If you like this article, you can Attach original link Reprint at will.
No intention of infringing your rights, please send an email to 1355471563#qq.com Or click on the right Private message: Muze feedback, we will deal with it as soon as possible.
0 replies A Author M administrators
    There is no discussion yet. Tell me your opinion
Personal Center
Shopping Cart
Coupon
Sign in today
There are new private messages Private Message List
search