функция
since 1.0.0
edit_comment_link()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
edit_comment_link( string $text = null, string $before = '', string $after = '' )
Описание
Выводит ссылку для редактирования комментария с форматированием.
Параметры
$text
string
необязательный
= null
Текст ссылки. Если null, по умолчанию ‘Edit This’.
$before
string
необязательный
= ''
Выводится перед ссылкой редактирования.
$after
string
необязательный
= ''
Выводится после ссылки редактирования.
Исходный код
wp-includes/link-template.php:1645
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 string $comment_id Comment ID as a numeric string.
* @param string $text Anchor text.
*/
echo $before . apply_filters( 'edit_comment_link', $link, $comment->comment_ID, $text ) . $after;
}
История изменений
| Версия | Описание |
|---|---|
| 1.0.0 | Introduced. |

