获得评论编辑链接WordPress函数edit_comment_link

为了在前台能够直接定位到需要编辑的评论,可以使用获得评论编辑链接WordPress函数edit_comment_link。下面我们一起了解一下edit_comment_link函数,以及它的函数原型。

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

显示带有格式的编辑注释链接。

获得评论编辑链接WordPress函数edit_comment_link (https://www.wpzt.net/) WordPress入门 第1张

参数

$text

(string) (可选) 锚文本,如果为空,则显示编辑此。

默认值: null

$before

(string) (可选) 在链接输出之前显示。

默认值: ”

$after

(string) (可选) 在链接输出后显示。

默认值: ”

函数原型

该函数位于wp-includes/link-template.php,在线地址:https://developer.wordpress.org/reference/files/wp-includes/link-template.php/

function edit_comment_link( $text = null, $before = ”, $after = ” ) {

$comment = get_comment();

if ( ! current_user_can( ‘edit_comment’, $comment->comment_ID ) ) {

return;

}

if ( null === $text ) {

$text = __( ‘Edit This’ );

}

$link = ‘<a class=”comment-edit-link” href=”‘ . esc_url( get_edit_comment_link( $comment ) ) . ‘”>’ . $text . ‘</a>’;

/**

* Filters the comment edit link anchor tag.

*

* @since 2.3.0

*

* @par** string $link Anchor tag for the edit link.

* @par** int $comment_id Comment ID.

* @par** string $text Anchor text.

*/

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

}

简单使用

使用默认值显示编辑注释链接。

edit_comment_link();

在段落中显示带有链接文本“编辑评论”的编辑注释链接。

edit_comment_link( ‘编辑评论’,, ‘<p>’, ‘</p>’ );

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容