Uses
| Uses | Description |
|---|---|
| wp-includes/wp-db.php: wpdb::get_var() | Retrieves one variable from the database. |
| wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |
Determine if a comment exists based on author and date.
For best performance, use $timezone = 'gmt', which queries a field that is properly indexed. The default value for $timezone is ‘blog’ for legacy reasons.
(string) (Required) Author of the comment.
(string) (Required) Date of the comment.
(string) (Optional) Timezone. Accepts 'blog' or 'gmt'.
Default value: 'blog'
(string|null) Comment post ID on success.
File: wp-admin/includes/comment.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 )
)
);
} | Version | Description |
|---|---|
| 4.4.0 | Added the $timezone parameter. |
| 2.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/comment_exists