get_comment_link

过滤钩子
apply_filters( 'get_comment_link', $link, $comment, $args, $cpage )
参数
  • (string) $link The comment permalink with '#comment-$id' appended.
    Required:
  • (WP_Comment) $comment The current comment object.
    Required:
  • (array) $args An array of arguments to override the defaults.
    Required:
  • (int) $cpage The calculated 'cpage' value.
    Required:
定义位置
相关勾子
get_comments_linkedit_comment_linkget_comment_idget_edit_comment_linkcomment_link
相关方法
get_comment_linkget_comments_linkedit_comment_linknext_comments_linkget_comment_idget_edit_comment_link
引入
4.4.0
弃用
-

get_comment_link函数返回一个给定评论的固定URL。它接受一个评论对象作为参数,并返回一个链接到网站上该评论的单独页面的URL。

过滤返回的单个注释固定链接。

return apply_filters( 'get_comment_link', $link, $comment, $args, $cpage );

常见问题

FAQs
查看更多 >