¿Desea añadir tamaños de imagen personalizados al cuadro de diálogo Añadir medio? Con este pequeño fragmento, puede añadir tamaños de imagen personalizados al cuadro de diálogo Añadir medio.
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.
Opcionalmente añadir más tamaños de imagen a la declaración if
en la línea 1 a 3.
if ( function_exists( 'add_image_size' ) ) { add_image_size( 'new-size', 300, 100, true ); //(cropped) } add_filter('image_size_names_choose', 'my_image_sizes'); function my_image_sizes($sizes) { $addsizes = array( "new-size" => __( "New Size") ); $newsizes = array_merge($sizes, $addsizes); return $newsizes; }
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 le ha gustado este fragmento de código, por favor considere revisar nuestra Revisión de Envira Gallery.
[…] Source […]
For the life of me I can’t add a new media size to the “add media” section of my WP post editor. In media settings, I have changed the sizes and that didn’t work. I added code to the functions.php file in a child theme and that didn’t work either. I regenerated all thumbnails, and checking the server I can see the new file sizes are created.
In my media settings, I have max width as 1367 to match my theme content area. File sizes on the server are 1376 wide. When I add the “Large” image to my post it actually adds the 1376 wide file but adds width=840 to the code and I can’t find where that setting is.
You may want to check that the theme itself is not affecting the new image size.