有没有一种方法,我可以从一个wordpress图像链接删除图像尺寸

jjhzyzn0  于 2023-01-08  发布在  WordPress
关注(0)|答案(1)|浏览(130)

我在wordpress帖子上插入帖子缩略图,但由于图像链接中添加了额外的维度,它们看起来很模糊。
第一个月
我怎样才能摆脱150x150维度。

3hvapo4f

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' );

相关问题