0

按照本指南,我想添加一个额外的图像大小:

if ( function_exists( 'add_theme_support' ) ) { 
    add_theme_support( 'post-thumbnails' );
    set_post_thumbnail_size( 150, 150, true ); // default Post Thumbnail dimensions (cropped)

    // additional image sizes
    // delete the next line if you do not need additional image sizes
    add_image_size( 'category-thumb', 500, 500 );
}

但是我没有看到/wp-content/uploads/...在上传新图像后创建了这个大小(500 X 500)的图像。

有什么我错过的想法吗?

4

2 回答 2

2

这仅适用于新上传的图像!只需删除旧的并重新上传即可。

于 2020-03-24T13:03:32.463 回答
0

只需添加此代码。

if (function_exists('add_image_size')){
add_image_size( 'category-thumb',500,500, true);

}
于 2016-07-08T09:00:09.923 回答