我有一个功能,可以在每篇文章的顶部创建一条生物线条。其中一部分获得了该用户的头像,他将其上传到WordPress(我使用了一个插件,所以人们不需要使用Gravatar)。
function mm_author_byline()
{
if (is_single() AND (get_post_type() == \'post\' OR get_post_type() == \'theme_product_review\')) {
?>
<div class="mm-byline-image">
<?= get_avatar(get_the_author_meta(\'ID\')) ?>
</div>
<?php
}
}
现在的问题是,此图像既没有被裁剪,也没有缩小大小。它需要原始图像,可以是巨大的。我怎样才能获得头像图像的缩小版本?