WordPress creates weird image sizes… :P

I just noticed WordPress creates 48×48, 96×96 and 128×128 version images, when I upload something.

But, I swear, there’s nothing on my functions.php about this. Any clues of how to fix this? I don’t want those images, they use a lot of space… :/

Related posts

2 comments

  1. Ok, the problem was the CO-AUTHORS PLUS plugin.
    I just removed the image sizes with the functions.php and it’s ok. 🙂

  2. Try adding this to your functions.php file

    function wp_filter_image_sizes( $sizes) {

    unset( $sizes[‘medium’]); unset( $sizes[‘large’]); unset(
    $sizes[‘wp-newsletters-max’]);

    return $sizes; } add_filter(‘intermediate_image_sizes_advanced’,
    ‘wp_filter_image_sizes’);

    function wp_custom_image_sizes($sizes) { $myimgsizes = array(
    “image-in-post” => __( “Image in Post” ), “full” => __( “Original
    size” ) ); return $myimgsizes; } add_filter(‘image_size_names_choose’,
    ‘wp_custom_image_sizes’);

Comments are closed.