Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 WordPress 主题。但是我在帖子缩略图中设置特色图像时遇到问题。当我设置一个 300x210 像素的特色图片时,它变成了 221x155。在functions.php 中,我添加了这段代码。CSS文件有问题吗?
//add support for featured images add_theme_support('post-thumbnails'); set_post_thumbnail_size(300, 210);
你缺少一个true和if声明。将您的 function.php 代码替换为:
true
if
if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 320, 210, true ); }
此外,此代码应替换set_post_thumbnail_sizefunctions.php 中的原始代码(由主题设置)。
set_post_thumbnail_size