Which are precisely the predefined image sizes?
The defaults are Thumbnail 150×150, Medium 300×300, and Large 1024×1024. The fixed values can be changed in the admin dashboard under Settings > Media. You can also change them in your theme’s functions.php: update_option( ‘thumbnail_size_w’, 160 ); // Set Thumbnail width – default 150 update_option( ‘thumbnail_size_h’, 160 ); // Set Thumbnail height – default 150 … Read more