get_edit_comment_link()
Gets the URL to the edit page of the specified comment.
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
Returns
String|null. URL of the edit page for the specified comment or null when the user does not have permission to edit the comment.
Usage
get_edit_comment_link( $comment_id );
- $comment_id(integer) (required)
- ID of the comment.
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. |