AUTHOR_EMAIL FILTER自定义评论作者的EMAIL
发布:smiling 来源: PHP粉丝网 添加日期:2015-03-20 15:55:35 浏览: 评论:0
wordpress4.1新增了一个钩子:author_email,可以利用这个filter显示自定义评论作者的email,形式如下:
apply_filters ( ‘author_email’, string $author_email, int $comment_ID )
在wp-includes/comment-template.php的comment_author_email函数中用到了author_email的filter.
- function comment_author_email( $comment_ID = 0 ) {
- $author_email = get_comment_author_email( $comment_ID );
- /**
- * Filter the comment author's email for display.
- *
- * @since 1.2.0
- * @since 4.1.0 The `$comment_ID` parameter was added.
- * //phpfensi.com
- * @param string $author_email The comment author's email address.
- * @param int $comment_ID The comment ID.
- */
- echo apply_filters( 'author_email', $author_email, $comment_ID );
- }
Tags: AUTHOR_EMAIL FILTER 评论作者
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)