get_edit_comment_link( int|WP_Comment $comment_id ): string|void

In this article

Retrieves the edit comment link.

Parameters

$comment_idint|WP_Commentoptional
Comment ID or WP_Comment object.

Return

string|void The edit comment link URL for the given comment.

Source

function get_edit_comment_link( $comment_id = 0 ) {
	$comment = get_comment( $comment_id );

	if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) {
		return;
	}

	$location = admin_url( 'comment.php?action=editcomment&c=' ) . $comment->comment_ID;

	/**
	 * Filters the comment edit link.
	 *
	 * @since 2.3.0
	 *
	 * @param string $location The edit link.
	 */
	return apply_filters( 'get_edit_comment_link', $location );
}

Hooks

apply_filters( ‘get_edit_comment_link’, string $location )

Filters the comment edit link.

Changelog

VersionDescription
2.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.