我在wordpress帖子上插入帖子缩略图,但由于图像链接中添加了额外的维度,它们看起来很模糊。第一个月我怎样才能摆脱150x150维度。
150x150
3hvapo4f1#
是的,你可以这样做,并通过将此代码应用到主题内的functios.php文件中来修复你的大小
function wpdocs_setup_theme() { add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 150, 150 ); // you can change the value form here } add_action( 'after_setup_theme', 'wpdocs_setup_theme' );
1条答案
按热度按时间3hvapo4f1#
是的,你可以这样做,并通过将此代码应用到主题内的functios.php文件中来修复你的大小