Sidebar Thumbs Squished?

时间:2012-11-11 作者:Joe Bobby

由于某种原因,我的缩略图似乎被压扁了,尽管我是从一些看起来工作正常的缩略图中复制代码的。

有效的代码:

在索引中。php

<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail( \'category-thumb\',array(\'title\' => "")); ?>
</a>
在函数中。php

//Main Thumbnail Size
if ( function_exists( \'add_image_size\' ) ) {
    add_image_size( \'category-thumb\', 192, 134 );
}
上面的拇指工作正常,将主图像的大小调整为192x134,没有问题。

以下代码无效。

在侧栏中。php

<li>
    <a class="sidebar-thumb" href="<?php the_permalink(); ?>"><?php the_post_thumbnail( \'sidebar-thumb\',array(\'title\' => "")); ?></a>       
    <a class="sidebar-link" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>      
</li>
在函数中。php

//Sidebar Thumbnail Size
if ( function_exists( \'add_image_size\' ) ) {
    add_image_size( \'sidebar-thumb\', 47, 47 );
}
我做错了什么?

1 个回复
最合适的回答,由SO网友:Joe Bobby 整理而成

必须重新生成所有缩略图。对于那些可能遇到类似问题的插件,其名称为“重新生成缩略图”

结束

相关推荐

Black and White thumbnails

有多种方法可以将彩色图像转换为black and white 在客户端使用javascript。然而,它不会在所有浏览器中都工作,而且速度很慢。有没有办法将Wordpress帖子缩略图转换为black and white 上server side 自动地这就是我想要实现的目标:上载彩色图像以黑白显示悬停时更改为其原始颜色