¿Quieres ocultar los botones y campos de entrada dentro de la ventana de adjuntos multimedia? Añadir este fragmento a functions.php de tu tema de WordPress te ayudará a hacerlo fácilmente.
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 attachment_fields($form_fields, $post) { if ( substr( $post->post_mime_type, 0, 5 ) == 'image' ) { $form_fields['image_alt']['value'] = ''; $form_fields['image_alt']['input'] = 'hidden'; $form_fields['post_excerpt']['value'] = ''; $form_fields['post_excerpt']['input'] = 'hidden'; $form_fields['post_content']['value'] = ''; $form_fields['post_content']['input'] = 'hidden'; $form_fields['url']['value'] = ''; $form_fields['url']['input'] = 'hidden'; $form_fields['align']['value'] = 'aligncenter'; $form_fields['align']['input'] = 'hidden'; $form_fields['image-size']['value'] = 'thumbnail'; $form_fields['image-size']['input'] = 'hidden'; $form_fields['image-caption']['value'] = 'caption'; $form_fields['image-caption']['input'] = 'hidden'; $form_fields['buttons']['input'] = 'hidden'; } return $form_fields; } add_filter('attachment_fields_to_edit', 'attachment_fields', 15, 2 );
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: 62 mejores temas gratuitos para blogs de WordPress o 7 mejores plugins para formularios de contacto de WordPress.
I wonder if there is a way to influence the order of fields. My caption field is now always the last one…
is it possible to show “All Types” instea dof “Images” as the default view in the “Media Library” tab?
i want to try this in one of my wordpress.
Sure just copy and paste the code into your functions.php file and you will be ready to go.