如何用`user-avatar`插件在发布的元数据中显示作者的头像

时间:2013-10-22 作者:ironsand

我正在使用user-avatar, 我想在帖子元数据中显示用户图标。http://wordpress.org/plugins/wp-user-avatar/

我是这样写的。

<?php the_author_posts_link(); ?> <?php echo get_avatar(); ?>

它只显示默认的“无人”化身。

如果我写得像<?php echo get_avatar("myemail@example.com"); ?>, 然后通过user-avatar 插件。

所以如果我能收到作者的电子邮件,一切都很好。

我试图通过<?php the_author_meta(\'user_email\'); ?>. 但它不会返回电子邮件,而是直接输出。

我现在卡住了。如何在post meta区域设置用户头像?

1 个回复
最合适的回答,由SO网友:Maruti Mohanty 整理而成

使用get_the_author_meta(), 此函数返回数据,但不显示数据。例如:--

<?php $user_email = get_the_author_meta(\'user_email\'); ?>
有关更多信息,请查看codex

结束

相关推荐

未在循环外工作的_Author()

索引中有以下代码。php和我希望包含这行代码(下面的代码)以在循环顶部显示作者信息。 <?php include \'author-top.php\'; ?><!--author--> 我希望它显示在标题后面,如下所示<?php get_header(); ?> <!--This is where I want my author div to display--> <?php include \'author-top.php