让代码更简单

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

重要:本文最后更新于2020-11-17 17:33:00,某些文章具有时效性,若有错误或已失效,请在下方留言或联系代码狗

为了在前台能够直接定位到需要编辑的评论,可以使用WordPress函数edit_comment_link来取得某条评论的编辑链接。下面一起来学习下edit_comment_link函数,以及它的函数原型,看看是如何实现的。

复制
edit_comment_link( string $text = nullstring $before = ''string $after = '' )

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

参数

  • $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
*
* @param string $link Anchor tag for the edit link.
* @param int $comment_id Comment ID.
* @param 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>' );

感觉很棒!可以赞赏支持我哟~

0 打赏

评论 (0)

登录后评论
QQ咨询 邮件咨询 狗哥推荐