wpseek.com
WordPress开发者和主题制作者的搜索引擎



edit_comment_link › WordPress Function

Since1.0.0
已弃用n/a
edit_comment_link ( $text = null, $before = '', $after = '' )
参数: (3)
  • (string) $text Optional. Anchor text. If null, default is 'Edit This'. Default null.
    Required: No
    默认: null
  • (string) $before Optional. Display before edit link. Default empty.
    Required: No
    默认: (empty)
  • (string) $after Optional. Display after edit link. Default empty.
    Required: No
    默认: (empty)
定义在:
文档:

Displays the edit comment link with formatting.



源码

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 string $comment_id Comment ID as a numeric string.
	 * @param string $text       Anchor text.
	 */
	echo $before . apply_filters( 'edit_comment_link', $link, $comment->comment_ID, $text ) . $after;
}