comment_author_email_link

函数
comment_author_email_link ( $linktext = '', $before = '', $after = '', $comment = null )
参数
  • (string) $linktext Optional. Text to display instead of the comment author's email address. Default empty.
    Required:
    Default: (empty)
  • (string) $before Optional. Text or HTML to display before the email link. Default empty.
    Required:
    Default: (empty)
  • (string) $after Optional. Text or HTML to display after the email link. Default empty.
    Required:
    Default: (empty)
  • (int|WP_Comment) $comment Optional. Comment ID or WP_Comment object. Default is the current comment.
    Required:
    Default: null
定义位置
相关方法
get_comment_author_email_linkcomment_author_emailcomment_author_url_linkcomment_author_linkget_comment_author_email
引入
0.71
弃用
-

comment_author_email_link: 此函数生成一个指向评论作者的电子邮件地址的链接: 当点击时,它会打开用户的默认电子邮件客户端,并在收件人栏中预先填上电子邮件地址。

显示给当前评论的作者的HTML电子邮件链接。

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

function comment_author_email_link( $linktext = '', $before = '', $after = '', $comment = null ) {
	$link = get_comment_author_email_link( $linktext, $before, $after, $comment );
	if ( $link ) {
		echo $link;
	}
}

常见问题

FAQs
查看更多 >