wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
comment_exists › WordPress Function
Seit2.0.0
Veraltetn/v
› comment_exists ( $comment_author, $comment_date, $timezone = 'blog' )
Parameter: (3) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: | |
Changelog: |
|
Determines 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.Quellcode
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 ) ) ); }