函数原型
comment_exists( string $comment_author, string $comment_date, string $timezone = ‘blog’ ): string|null
函数描述
Determines if a comment exists based on author and date.
是否弃用
未弃用
函数参数
-
$comment_author
string
Required - Author of the comment.
-
$comment_date
string
Required - Date of the comment.
-
$timezone
string
Optional - Timezone. Accepts
'blog'or'gmt'. Default'blog'.Default:
'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. |

