comment_author_email_link( string $linktext = '', string $before = '', string $after = '', int|WP_Comment $comment = null )
Display the html email link to the author of the current comment.
描述
Care should be taken to protect the email address and assure that email harvesters do not capture your commentors’ email address. Most assume that their email address will not appear in raw form on the site. Doing so will enable anyone, including those that people don’t want to get the email address and use it for their own means good and bad.
参数
- $linktext
-
(string)
(Optional)
Text to display instead of the comment author’s email address.Default value: ”
- $before
-
(string)
(Optional)
Text or HTML to display before the email link.Default value: ”
- $after
-
(string)
(Optional)
Text or HTML to display after the email link.Default value: ”
- $comment
-
(int|WP_Comment)
(Optional)
Comment ID or WP_Comment object. Default is the current comment.Default value: null
源代码
File: wp-includes/comment-template.php
function comment_author_email_link( $linktext = '', $before = '', $after = '', $comment = null ) {
if ( $link = get_comment_author_email_link( $linktext, $before, $after, $comment ) ) {
echo $link;
}
}
更新日志
Version | 描述 |
---|---|
4.6.0 | Added the $comment parameter. |
0.71 | Introduced. |
相关函数
Uses
-
wp-includes/comment-template.php:
get_comment_author_email_link()
User Contributed Notes
-
Skip to note content
You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note
Contributed by
Codex
Default Usage
Email: <?php comment_author_email_link(); ?>
Displays comment author’s email link as text string Email Comment Author and adds arrows before and after the link to style it.
comment_author_email_link( 'Email Comment Author', ' > ', ' < ' );
你可能对这些文章感兴趣:
- wordpress函数edit_user()用法示例
- wordpress函数email_exists()用法示例
- wordpress函数endElement()用法示例
- wordpress函数edit_term_link()用法示例
- wordpress函数edit_post_link()用法示例
- wordpress函数edit_tag_link()用法示例
- wordpress函数edit_link()用法示例
- wordpress函数edit_post()用法示例
- wordpress函数edit_comment_link()用法示例
- wordpress函数edit_form_image_editor()用法示例
- wordpress函数edit_bookmark_link()用法示例
- wordpress函数edit_comment()用法示例
- wordpress函数drop_index()用法示例
- wordpress函数dynamic_sidebar()用法示例
如有疑问,请前往问答中心反馈!
反馈