author_email

过滤钩子
apply_filters( 'author_email', $author_email, $comment->comment_ID )
参数
  • (string) $author_email The comment author's email address.
    Required:
  • (string) $comment_ID The comment ID as a numeric string.
    Required:
定义位置
相关勾子
author_linkget_comment_author_emailpre_comment_author_emailauto_core_update_emailauthor_feed_link
相关方法
the_author_emailcomment_author_emailget_the_author_emailauthor_canthe_author_aimget_comment_author_email
引入
4.1.0
弃用
-

author_email。这个过滤器允许开发者修改WordPress中作者的电子邮件地址。这可以用来改变显示在作者身上的电子邮件地址,或者为作者添加额外的电子邮件地址。

过滤显示评论作者的电子邮件。

echo apply_filters( 'author_email', $author_email, $comment->comment_ID );

常见问题

FAQs
查看更多 >