comment_author_link

函数
comment_author_link ( $comment_ID = 0 )
参数
  • (int|WP_Comment) $comment_ID Optional. WP_Comment or the ID of the comment for which to print the author's link. Default current comment.
    Required:
定义位置
相关方法
comment_author_url_linkget_comment_author_linkcomment_author_ipcomment_author_email_linkcomment_author_url
引入
0.71
弃用
-

comment_author_link: 这个函数生成一个指向评论作者的网站的链接。

显示当前评论作者的URL的HTML链接。

function comment_author_link( $comment_ID = 0 ) {
	echo get_comment_author_link( $comment_ID );
}

常见问题

FAQs
查看更多 >