get_comment_author_url

过滤钩子
apply_filters( 'get_comment_author_url', $url, $id, $comment )
参数
  • (string) $url The comment author's URL, or an empty string.
    Required:
  • (string|int) $comment_ID The comment ID as a numeric string, or 0 if not found.
    Required:
  • (WP_Comment|null) $comment The comment object, or null if not found.
    Required:
定义位置
相关勾子
pre_comment_author_urlget_comment_authorget_comment_author_url_linkget_comment_author_linkget_comment_author_ip
相关方法
get_comment_author_urlget_comment_author_rsscomment_author_urlget_comment_authorget_comment_author_url_linkget_comment_author_link
引入
4.1.0
弃用
-

get_comment_author_url: 这个函数检索给定评论的作者的网站的URL: 该函数接受一个参数,即评论ID,并返回一个代表URL的字符串。

过滤评论作者的URL。

return apply_filters( 'get_comment_author_url', $url, $id, $comment );

常见问题

FAQs
查看更多 >