当前浏览:首页 / WordPress函数 / comment_author_email()

comment_author_email( int|WP_Comment $comment_ID )

显示当前全局$comment作者的电子邮件

author 作者more...

comment 评论more...

email


描述

应注意保护电子邮件地址,并确保电子邮件采集器不会捕获您的评论者的电子邮件地址。大多数人认为他们的电子邮件地址不会以原始形式出现在网站上。这样做将使任何人,包括那些不想获得电子邮件地址的人,以他们自己好的或坏的的方式使用它。


参数

$comment_ID

(int|WP_Comment)(可选) WP_Comment或要打印作者电子邮件的评论的ID。默认当前评论。



源码

查看源码 官方文档


更新日志

版本描述
4.4.0增加了$comment_ID也能接受WP_Comment对象的能力。
0.71开始引入

使用示例

  • 示例1

    实例

    <a href="mailto:<?php comment_author_email(); ?>"><?php printf( __( 'Contact %s', 'textdomain' ), get_comment_author() ); ?></a>