# comment_exists()

URL: https://chugunov.pro/api-wordpress/functions/comment_exists/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: функция.
Появился в версии: 2.0.0.

## Сигнатура

```php
comment_exists( string $comment_author, string $comment_date, string $timezone = 'blog' ): string|null
```

## Описание

Для наилучшей производительности используйте $timezone = 'gmt' — при этом запрос обращается к правильно проиндексированному полю. Значение по умолчанию для $timezone — ‘blog’ по историческим причинам.

## Параметры

- `$comment_author` `string` — обязательный. Автор комментария.
- `$comment_date` `string` — обязательный. Дата комментария.
- `$timezone` `string` — необязательный, по умолчанию `'blog'`. Часовой пояс. Принимает 'blog' или 'gmt'. По умолчанию 'blog'.

## Возвращаемое значение

`string|null`

## Исходный код

Файл: `wp-admin/includes/comment.php:26`

```php
function comment_exists( $comment_author, $comment_date, $timezone = 'blog' ) {
	global $wpdb;

	$date_field = 'comment_date';
	if ( 'gmt' === $timezone ) {
		$date_field = 'comment_date_gmt';
	}

	return $wpdb->get_var(
		$wpdb->prepare(
			"SELECT comment_post_ID FROM $wpdb->comments
			WHERE comment_author = %s AND $date_field = %s",
			stripslashes( $comment_author ),
			stripslashes( $comment_date )
		)
	);
}
```

## История изменений

- 4.4.0 — Added the $timezone parameter.
- 2.0.0 — Introduced.

## Связанные

Использует: `wpdb::get_var`, `wpdb::prepare`.

Оригинал в официальной документации: https://developer.wordpress.org/reference/functions/comment_exists/
