get_edit_comment_link

Definition:
function get_edit_comment_link( $comment_id = 0 ) {}

Retrieve edit comment link.

Parameters

  • int $comment_id: Optional. Comment ID.

Defined filters

  • get_edit_comment_link
    apply_filters( 'get_edit_comment_link', $location )

Source code

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;

	return apply_filters( 'get_edit_comment_link', $location );

}

1378

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: