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.0.2

function get_comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	$comment = get_comment();
	$comment_ID = ! empty( $comment->comment_ID ) ? $comment->comment_ID : '0';

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

Залишити відповідь

Ваша e-mail адреса не оприлюднюватиметься. Обов’язкові поля позначені *