comment_exists

函数
comment_exists ( $comment_author, $comment_date, $timezone = 'blog' )
参数
  • (string) $comment_author Author of the comment.
    Required:
  • (string) $comment_date Date of the comment.
    Required:
  • (string) $timezone Timezone. Accepts 'blog' or 'gmt'. Default 'blog'.
    Required:
    Default: 'blog'
返回值
  • (string|null) Comment post ID on success.
定义位置
相关方法
comment_textcomment_text_rsscomment_excerptcomment_idcomment_class
引入
2.0.0
弃用
-

comment_exist: 这个函数检查一个具有特定ID的评论是否存在。

根据作者和日期来确定评论是否存在。

为了获得最佳性能,请使用`$timezone = ‘gmt’`,它可以查询一个被正确索引的字段。出于传统的原因,`$timezone’的默认值是’blog’。

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 )
		)
	);
}

常见问题

FAQs
查看更多 >