2024年10月16日 建站教程
函数原型:
comment_author_email_link( string $linktext = '', string $before = '', string $after = '', int|WP_Comment $comment = null )
参数说明:
参数名 | 描述 |
---|---|
$linktext | 要显示的文本,而不是评论作者的电子邮件地址。 |
$before | 要在电子邮件链接之前显示的文本或HTML。 |
$after | 要在电子邮件链接后显示的文本或HTML。 |
$comment | 评论ID或WP_Comment对象。默认为当前评论。 |
函数源码:
function comment_author_email_link( $linktext = '', $before = '', $after = '', $comment = null ) { $link = get_comment_author_email_link( $linktext, $before, $after, $comment ); if ( $link ) { echo $link; } }
调用方法:
邮箱: <?php comment_author_email_link(); ?>
本文链接:http://so.lmcjl.com/news/15504/