Support » Fixing WordPress » Featured Image not properly resizing

  • thomasp423

    (@thomasp423)


    In my functions.php I have…

    //////////////////////////////////////////////////////////////
    // Feature Images (Post Thumbnails)
    /////////////////////////////////////////////////////////////
    
    add_theme_support('post-thumbnails');
    
    set_post_thumbnail_size(200, 200, true);
    add_image_size('ttrust_small', 110, 110, true);
    add_image_size('ttrust_fourColumn', 205, 125, true);
    add_image_size('ttrust_threeColumn', 280, 170, true);

    However my output is a 110 x 110px image. (these were the original dimensions before I changed them, also I clearned my cache.)

    <img width="110" height="110" src="http://thepodadvertising.com/newsite/wp-content/uploads/2013/03/testing-110x110.png" class="postThumb wp-post-image hoverZoomLink" alt="United Solutions Company forms credit union marketing partnership with The Pod Advertising">

  • The topic ‘Featured Image not properly resizing’ is closed to new replies.