Hi.
When I upload an image, does GP automatically generate any image sizes?
I did a search in my functions.php file for add_image_size and set_post_thumbnail_size. I see no entry for it.
But I did notice this:
/*Create 365×243 feature images*/
add_filter( ‘generate_page_header_default_size’, ‘tu_smaller_column_images’ );
function tu_smaller_column_images( $size ) {
// Set up our conditional
if ( ! is_singular() && ! in_array( ‘featured-column’, get_post_class() ) ) {
return ‘medium’;
}
return $size;
}
Can you tell what this means?
I ask because right now in Settings > Media, I have everything set to 0. But when I upload an image file (900×600, 16KB), WP is still generating an additional image file that is 768×512 and 70KB. In other words, much larger.
https://drive.google.com/file/d/15x7LUUBouo0jWxyt9DK4X-YCTDpBe9CD/view?usp=sharing
Thank you.
P.S. I am doing these tests on a staging site of my live site!