I tried to add more images sizes, added this to functions.php in my theme folder:
add_theme_support( 'post-thumbnails' );
add_image_size( '100px', 100, 9999 );
add_image_size( '200px', 200, 9999 );
add_image_size( '300px', 300, 9999 );
add_image_size( '400px', 400, 9999 );
add_image_size( '500px', 500, 9999 );
add_image_size( '600px', 600, 9999 );
add_image_size( '700px', 700, 9999 );
but that didn’t see to have any effect. Is there something I did wrong in this file, or something I need to do to rerun the functions.php?
I don’t think it’s a problem with my theme or install, just a wordpress thing. If I set the image size to medium, it will look like this: https://i.imgur.com/GUKzTC6.png , and if I then resize it to custom 500px wide, it just stretches out that thumbnail, rather than making a 500px wide one https://i.imgur.com/gvjBkp6.png
edit: These custom sized ones also don’t resize when the screen is shrunk on mobile so they stretch out the page. Not sure if the default sizes do that.