Guest User

Untitled

a guest
Jan 7th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?
  2. function commentCount() {
  3. global $wpdb;
  4. $count = $wpdb->get_var('SELECT COUNT(comment_ID) FROM ' . $wpdb->comments. ' WHERE comment_author_email = "' . get_comment_author_email() . '"');
  5. echo $count . ' comments';
  6. }
  7. ?>
Add Comment
Please, Sign In to add comment