Hi,
When I upload an image to wordpress, it creates like 5 different sizes. I have tried the differnet options like
// Remove X Image Sizes
// =============================================================================
add_action(‘wp’, ‘remove_x_image_sizes’);
function remove_x_image_sizes() {
remove_image_size(‘post-thumbnails’);
remove_image_size(‘entry’);
remove_image_size(‘entry-cropped’);
remove_image_size(‘entry-fullwidth’);
remove_image_size(‘entry-cropped-fullwidth’);
}
// =============================================================================
but it still creates 5 different sizes. I have already turned off the wordpress options for thumbnails under settings media.