get_edit_comment_link()
Retrieves the edit comment link.
Uses: admin_url()
Used By: edit_comment_link()
1 time — 0.0028741 sec (very slow) | 50000 times — 6.57 sec (fast) | PHP 7.3.12, WP 5.3.2
Hooks from the function
Return
String|null
. The edit comment link URL for the given comment, or void if the comment id does not exist or the current user is not allowed to edit it.
Usage
get_edit_comment_link( $comment_id, $context );
- $comment_id(int|WP_Comment)
- Comment ID or WP_Comment object.
- $context(string)
- Context in which the URL should be used. Either 'display', to include HTML entities, or 'url'.
Default: 'display'
Examples
#1 Get the link (URL) to edit the comment
echo get_edit_comment_link( 2020 ); // http://example.com/wp-admin/comment.php?action=editcomment&c=2020
#2 Get a full-fledged link
This example is analogous to what the edit_comment_link() function returns:
echo '<a class="comment-edit-link" href="' . get_edit_comment_link( 2020 ) . '">✎</a>';
Changelog
Since 2.3.0 | Introduced. |
Since 6.7.0 | The $context parameter was added. |