由于某种原因,我的缩略图似乎被压扁了,尽管我是从一些看起来工作正常的缩略图中复制代码的。
有效的代码:
在索引中。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 );
}
我做错了什么?