• I’ve been reading through the forums to find my problem and am not sure where to look next. My featured images are being cropped to an arbitrary width (398px). I’ve tried <?php the_post_thumbnail( array(960,300) ); ?> which worked a few days ago but now they are resized to 398×300 (original size is 1280×960). I’ve also tried the following in my functions.php file:

    add_theme_support( 'automatic-feed-links' );
    add_image_size( 'nfla-thumb', 960, 300, true );

    And in my template file I added <?php the_post_thumbnail( 'nfla-thumb' ); ?> and it’s still not working. Any ideas on where to look?

  • The topic ‘the_post_thumbnail not resizing’ is closed to new replies.