edit_comment_link

过滤钩子
apply_filters( 'edit_comment_link', $link, $comment->comment_ID, $text )
参数
  • (string) $link Anchor tag for the edit link.
    Required:
  • (string) $comment_id Comment ID as a numeric string.
    Required:
  • (string) $text Anchor text.
    Required:
定义位置
相关勾子
get_comment_linkget_edit_comment_linkget_comments_linkcomment_linkedit_comment
相关方法
edit_comment_linkget_comment_linkget_edit_comment_linkget_comments_linknext_comments_linkedit_comment
引入
2.3.0
弃用
-

edit_comment_link: 这是一个过滤钩子,允许开发者修改编辑评论的链接。

过滤评论编辑链接的锚标签。

echo $before . apply_filters( 'edit_comment_link', $link, $comment->comment_ID, $text ) . $after;

常见问题

FAQs
查看更多 >