0

I am trying to change the size of a thumbnail in wordpress, but it keeps making it exactly square even though I want to stretch the width moreso than the height. Im not sure why this doesnt work. Any help would be great In functions I have

// Used for large feature (header) images.
add_image_size( 'large-feature', $custom_header_support['width'], $custom_header_support['height'], true );
// Used for featured posts if a large-feature doesn't exist.
add_image_size( 'small-feature', 500, 300 );

and below

if ( function_exists( 'add_image_size' ) ) { 
add_image_size( 'results-thumb', 70, 55, true); 

}

and where im calling the thumbnail...

<?php echo the_post_thumbnail('results-thumb'); ?>

Heres the site, at the bottom in the latest results section you'll see the thumbnails.. http://limerickfc.hailstormcommerce.com/cms/

4

2 に答える 2

0

OK、それを含むdivにルールを適用することでcssの回避策で修正しましたmin-widthが、これが最善の方法であるかどうかはまだわかりません。しかし、私はまだこの状況に遭遇すると確信しているので、私はまだ答えを受け入れません

于 2012-09-27T10:17:33.330 に答える
0

おそらくサイズを再生成する必要があります。このプラグインをインストールして実行してみてくださいhttp://wordpress.org/extend/plugins/regenerate-thumbnails/

于 2012-09-27T10:30:06.183 に答える