get_comment_ID()WP 1.5.0

Выводит ID текущего комментария. Используется в цикле комментариев.

Основа для: comment_ID()
Хуки из функции

Возвращает

Строку. ID комментария.

Использование

get_comment_ID();

Примеры

0

#1 Выведем ссылку с анкором на комментарий

Текстом которой будет имя комментатора. Код нужно использовать в цикле комментария:

<div id="comment-<?php echo get_comment_ID() ?>">Comment by 
<?php comment_author() ?>: </div>
<div class="comment-text"><?php comment_text() ?></div>

Список изменений

С версии 1.5.0 Введена.

Код get_comment_ID() WP 6.4.3

function get_comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	$comment = get_comment();

	$comment_id = ! empty( $comment->comment_ID ) ? $comment->comment_ID : '0';

	/**
	 * Filters the returned comment ID.
	 *
	 * @since 1.5.0
	 * @since 4.1.0 The `$comment` parameter was added.
	 *
	 * @param string     $comment_id The current comment ID as a numeric string.
	 * @param WP_Comment $comment    The comment object.
	 */
	return apply_filters( 'get_comment_ID', $comment_id, $comment );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase
}