当前浏览:首页 / WordPress函数 / edit_comment_link()

edit_comment_link( string $text = null, string $before = '', string $after = '' )

显示带有格式的编辑评论链接

comment 评论more...

edit

linkmore...


参数

$text

(string)(可选) 链接文本。如果为空,默认值为'Edit This'。

默认值: null

$before

(string)(可选) 编辑链接前显示。

默认值: ''

$after

(string)(可选) 编辑链接后显示。

默认值: ''



源码

查看源码 官方文档


更新日志

版本描述
1.0.0开始引入

使用示例

  • 示例1

    示例

    使用默认值显示编辑评论链接。

    edit_comment_link();
    

    在段落(p)标签中显示编辑评论链接,链接文本为“编辑评论”。

    edit_comment_link( __( 'Edit Comment', 'textdomain' ), '<p>', '</p>' );