如何在wordpress单个帖子页面显示头像?

发布于 2024-08-25 21:32:50 字数 408 浏览 9 评论 0原文

我尝试通过这些代码在单个(帖子)页面获取头像

  <?php
     echo get_avatar( $id_or_email, $size = '96' );
     ?>

  <?php echo get_avatar( $comment, 32 ); ?>

  <?php echo get_avatar( $id_or_email, $size, $default, $alt ); ?>

  <?php echo get_avatar( get_the_author_email(), '60' ); ?>

但没有成功,没有任何效果。它始终显示默认头像。其实作者有头像在gravatar。但它没有显示。

谁能告诉我在单个帖子页面显示头像的正确方法?

I tried to get avatar at single (post) page by these codes

  <?php
     echo get_avatar( $id_or_email, $size = '96' );
     ?>

  <?php echo get_avatar( $comment, 32 ); ?>

  <?php echo get_avatar( $id_or_email, $size, $default, $alt ); ?>

  <?php echo get_avatar( get_the_author_email(), '60' ); ?>

But no success, nothing get working. It always show default gravatar. Actually author have avatar at gravatar. But it does not show.

Can anyone please tell me correct ways to display avatar at single post page ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫﹏色ふ单纯 2024-09-01 21:32:50

您是否在管理/设置/讨论中启用了头像?

另请查看使用 Gravatars « WordPress Codex 获取代码示例。

Do you have avatars enabled at Admin/Settings/Discussion?

Also check Using Gravatars « WordPress Codex for code examples.

云朵有点甜 2024-09-01 21:32:50
<?php echo get_avatar( get_the_author_meta( 'ID' ), 96 ); ?>
<?php echo get_avatar( get_the_author_meta( 'ID' ), 96 ); ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文