我正在尝试使用WP函数the_post_thumbnail(array(x,y));但图像无法正常调整大小。它只是不能正常工作。
特别是在page-template.php文件中我正在尝试使用的建筑物:
the_post_thumbnail( array(200,200) );
然而得到的图像是200 x 150.我在这里缺少什么?
我试图明确地将缩略图大小添加到functions.php中,如下所示:
add_image_size( 'news-feature-thumb', 200, 200, true );
但它没有任何区别。
我遍布StackOverflow,但我没有看到任何可以解决我的问题。我正在使用WP 3.3.1。这种方法是否已被弃用?
答案 0 :(得分:3)
添加add_image_size( 'news-feature-thumb', 200, 200, true );
后,请尝试调用the_post_thumbnail
:
the_post_thumbnail( 'news-feature-thumb' );