get_edit_comment_link() – Retrieves the edit comment link.

You appear to be a bot. Output may be restricted

Description

Retrieves the edit comment link.

Usage

$string|void = get_edit_comment_link( $comment_id );

Parameters

$comment_id
( int|WP_Comment ) optional – Optional. Comment ID or WP_Comment object.

Returns

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

Source

File name: wordpress/wp-includes/link-template.php
Lines:

1 to 18 of 18
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 );
}
 

 View on GitHub View on Trac