comment_author_email

函数
comment_author_email ( $comment_ID = 0 )
参数
  • (int|WP_Comment) $comment_ID Optional. WP_Comment or the ID of the comment for which to print the author's email. Default current comment.
    Required:
定义位置
相关方法
get_comment_author_emailcomment_author_email_linkcomment_author_ipcomment_author_urlget_comment_author_email_link
引入
0.71
弃用
-

comment_author_email: 此函数返回评论的作者的电子邮件地址。

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

应该注意保护电子邮件地址,并保证电子邮件采集器不会捕获你的评论者的电子邮件地址。大多数人认为他们的电子邮件地址不会以原始形式出现在网站上。这样做将使任何人,包括那些人们不希望得到的电子邮件地址,并将其用于他们自己的好的和坏的手段。

function comment_author_email( $comment_ID = 0 ) {
	$comment      = get_comment( $comment_ID );
	$author_email = get_comment_author_email( $comment );

	/**
	 * Filters the comment author's email for display.
	 *
	 * @since 1.2.0
	 * @since 4.1.0 The `$comment_ID` parameter was added.
	 *
	 * @param string $author_email The comment author's email address.
	 * @param string $comment_ID   The comment ID as a numeric string.
	 */
	echo apply_filters( 'author_email', $author_email, $comment->comment_ID );
}

常见问题

FAQs
查看更多 >