要在WordPress中显示当前文章作者的Gravatar头像,您可以使用以下代码添加到您的WordPress主题中的模板文件中,例如在single.php或content.php文件中:

<?php
$author_id = get_the_author_meta('ID');
$author_avatar = get_avatar($author_id, 80); // 80是头像的尺寸,可以根据需要进行更改
?>

<div class="authoravatar">
    <?php echo $author_avatar; ?>
</div>

这段代码将获取当前文章的作者ID,然后使用get_avatar函数获取作者的Gravatar头像。您可以根据需要更改头像的尺寸。然后,将头像显示在页面中的<div>元素中。确保将此代码添加到适当的位置,以便它在文章页面中显示作者的Gravatar头像。

请注意,根据您的主题和设计,您可能需要自定义CSS来为头像添加样式。您可以使用类似.authoravatar的类名并使用CSS来设置样式。