Está procurando uma maneira de alterar as opções padrão ao inserir mídia em uma publicação? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para definir as configurações padrão de exibição de anexos, alinhamento, link para tamanho no WordPress.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:
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' );
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como adicionar corretamente trechos de código no WordPress, para não danificar seu site acidentalmente.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 9 melhores plugins imobiliários para WordPress e como criar um formulário de contato no 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