¿Estás buscando una forma de cambiar las opciones por defecto al insertar archivos multimedia en una entrada? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para establecer la configuración predeterminada de visualización de archivos adjuntos, alineación, enlace a tamaño en WordPress.
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 wps_attachment_display_settings() { update_option( 'image_default_align', 'left' ); update_option( 'image_default_link_type', 'none' ); update_option( 'image_default_size', 'large' ); } add_action( 'after_setup_theme', 'wps_attachment_display_settings' );
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si te ha gustado este fragmento de código, por favor, considere la posibilidad de revisar nuestros otros artículos en el sitio como: 9 mejores plugins inmobiliarios para WordPress y cómo crear un formulario de contacto en WordPress.
I am trying to make the sizes custom in attachment display and have put in the proper code for it, but I have elementor/astra theme and the attachment display settings appear to be missing from all images. Is there a way to get it to show?
I am having the same issue did you found any solution ?
worked for me, thank you 🙂
glad it helped 🙂
Even in 2019 this post is still relevant.. Thanks this worked for me
Glad it worked for you 🙂
Are there similar update_option settings for the Gallery menu? I don’t see anything in the reference but I’d love to change the defaults for the Attachment, Columns, and Size settings there.
What file should these be put in? wp_config.php? I followed the link to options reference and interestingly enough, they don’t say there either!
KingSky, sorry I was not clear, you can just add this to the functions.php