1

我在functions.php中启用了缩略图和大小:

add_theme_support( 'post-thumbnails' );
add_image_size( 'post-thumbnail', 150, 150, true );
add_image_size( 'featured-thumbnail', 360, 300, true );

它们在循环中被正确调用,尽管裁剪设置为 true,但我还没有看到任何裁剪为指定尺寸的图像,它们都“看似”成比例地进行。每次进行更改时,我都会重新生成缩略图,但没有任何效果。我已经搜索了很多答案,几乎没有修复(我不想使用插件并手动完成)。

有任何想法吗?

4

1 回答 1

5

请试试这个:

if ( function_exists( 'add_image_size' ) ) { 
   add_image_size( 'post-thumbnail', 150, 150, true );// please give another name if its not major requirement of this
   add_image_size( 'featured-thumbnail', 360, 300, true );// please give another name if its not major requirement of this
}

谢谢。

于 2013-10-14T12:27:46.287 回答