on my theme, i found this script
add_image_size( 'slider', 464, 249, true );
add_image_size( 'fmenu', 306, 280, true );
add_image_size( 'teamthumb', 138, 207, true );
add_image_size( 'imlink', 286, 140, true );
add_image_size( 'albmlink', 274, 274, true );
add_image_size( 'fppost', 90, 90, true );
add_image_size( 'fslide', 520, 280, true );
i have disabled this, but when i upload another image, its generates 3 more images… like this:
original_file.jpg
origiinal_file-100x100.jpg
origiinal_file-109x109.jpg
i need only to upload the original file, there’s a way to solve this??
I can’t find where is this another 2 images sizes…
I believe those are probably generated by the default WordPress sizes – thumbnail, medium and large. (See Appearance > Media for where those sizes are set).
If you want to eliminate the extra image sizes the simplest way might be to eliminate some of your theme’s custom image sizes and use the defaults instead. OR, you can “unset” the defaults. This article explains how to do that, but to sum up here’s the code you’d add to your theme’s functions.php file:
Hope this helps, best of luck!
If those are the default alternate sizes, you don’t need any code to do this.
To get rid of the default alternate sizes, just go to Settings > Media in the admin, and set the sizes for “Thumbnail”, “Medium” and “Large” to 0px by 0px. Once you save these settings, WordPress will no longer create the alternate sizes (unless additional sizes are specified in a plugin or in your functions file).