获取单个帖子的作者电子邮件

时间:2014-11-07 16:41:23

标签: wordpress post mailto author

大家好,我想知道是否有人可以帮助我。我的博客有多个用户,他们可以创建帖子。我想在该特定帖子类型的single.php帖子上创建一个mailto:链接。我希望mailto:email成为该特定帖子的作者电子邮件,以便观众可以通过电子邮件发送该帖子的作者。

我知道wordpress具有以下功能:

<?php $user_email = get_the_author_meta('user_email'); ?>

此函数存储数据,如果有人可以帮我显示mailto:链接此函数,我将非常感激。

1 个答案:

答案 0 :(得分:0)

您可以简单地echo您需要的值。例如:

<a href="mailto:<?php echo get_the_author_meta('user_email'); ?>">Click here to email author</a>

或者,更具可读性:

<?php 
    $user_email = get_the_author_meta('user_email'); 
    echo '<a href="mailto:' . $user_email . '">Click here to email author</a>';
?>