edit_comment_link( string $text = null, string $before = '', string $after = '' )
Displays the edit comment link with formatting.
Description Description
Parameters Parameters
- $text
-
(string) (Optional) Anchor text. If null, default is 'Edit This'.
Default value: null
- $before
-
(string) (Optional) Display before edit link.
Default value: ''
- $after
-
(string) (Optional) Display after edit link.
Default value: ''
Source Source
File: wp-includes/link-template.php
function edit_comment_link( $text = null, $before = '', $after = '' ) { $comment = get_comment(); if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) { return; } if ( null === $text ) { $text = __( 'Edit This' ); } $link = '<a class="comment-edit-link" href="' . esc_url( get_edit_comment_link( $comment ) ) . '">' . $text . '</a>'; /** * Filters the comment edit link anchor tag. * * @since 2.3.0 * * @param string $link Anchor tag for the edit link. * @param int $comment_id Comment ID. * @param string $text Anchor text. */ echo $before . apply_filters( 'edit_comment_link', $link, $comment->comment_ID, $text ) . $after; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Examples
Displays edit comment link using defaults.
Displays edit comment link, with link text “edit comment”, in a paragraph () tag.