¿Está buscando una forma de crear una columna con la URL de la biblioteca multimedia? Este fragmento creará una nueva columna en la Biblioteca multimedia con la URL del archivo que le permitirá copiar y pegar fácilmente la URL.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
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 ). '" />'; } add_filter( 'manage_media_columns', 'muc_column' ); add_action( 'manage_media_custom_column', 'muc_value', 10, 2 );
Gracias a Steve Taylor por el fragmento original. Gracias a Jurko Chervony por los ajustes sugeridos.
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si te ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 27 mejores temas de negocios de WordPress para su sitio web y 15 mejores herramientas y plugins de marketing de contenidos para WordPress.
Wow, Thank you so much.
Awesome. I was looking for a plugin, but this is way easier and is now rolled into my child theme (and future child themes). Thanks!
Was looking all morning for something like this….Thanks
Works perfectly. Many thanks man!
[…] Source: http://wpsnipp.com/ […]
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for sharing this. You just saved me a couple of hours and a bottle of Advil.
Thank you so much for this. Made a nifty little plugin for this!
Thank you so much for this. Made a nifty little plugin for this!
I copied and pasted it at the very bottom of the ‘functions.php’ file, and when I tried to open the website again, it gave me a fatal error. Any ideas why? I’m using wordpress 3.8.
Without taking a look at your functions.php I would not be sure what the issue was. You could put it on pastebin.com and use the contact form to send me the link so i can take a look at it.
http://wpsnipp.com/index.php/contact/
Hi Brent,
This may be good for some, just not sure its a great feature for everyone. Thanks for the feedback its great to hear what I’m posting is helping people.
man this is awesome! why this isn’t default in wordpress who knows. thanks a million!
Awesome! Thanks.
Thank you, thank you, thank you. I was going crazy with all the drilling down for urls. I really appreciate it!
So convenient. This should be a plugin… that gives me an idea!
oh maaaan you are the BOSSSS!!! Thanks!