Comments: Add parameters to `edit_comment_link()` to allow specifying a Comment and link class.

Matches the parameters for `edit_post_link()`.

Fixes #36538.

Props flixos90.

git-svn-id: https://develop.svn.wordpress.org/trunk@37215 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Rachel Baker 2016-04-15 20:58:24 +00:00
parent b0ed40cb3b
commit d0ce9b88fa
1 changed files with 9 additions and 6 deletions

View File

@ -1402,13 +1402,16 @@ function get_edit_comment_link( $comment_id = 0 ) {
* Displays the edit comment link with formatting.
*
* @since 1.0.0
* @since 4.6.0 The `$comment` and `$class` arguments were added.
*
* @param string $text Optional. Anchor text.
* @param string $before Optional. Display before edit link.
* @param string $after Optional. Display after edit link.
* @param string $text Optional. Anchor text.
* @param string $before Optional. Display before edit link.
* @param string $after Optional. Display after edit link.
* @param int|WP_Comment $comment Optional. Comment ID or WP_Comment object.
* @param string $class Optional. Add custom class to link.
*/
function edit_comment_link( $text = null, $before = '', $after = '' ) {
$comment = get_comment();
function edit_comment_link( $text = null, $before = '', $after = '', $comment = 0, $class = 'comment-edit-link' ) {
$comment = get_comment( $comment );
if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) {
return;
@ -1418,7 +1421,7 @@ function edit_comment_link( $text = null, $before = '', $after = '' ) {
$text = __( 'Edit This' );
}
$link = '<a class="comment-edit-link" href="' . esc_url( get_edit_comment_link( $comment ) ) . '">' . $text . '</a>';
$link = '<a class="' . esc_attr( $class ) . '" href="' . esc_url( get_edit_comment_link( $comment ) ) . '">' . $text . '</a>';
/**
* Filters the comment edit link anchor tag.