Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- function commentCount() {
- global $wpdb;
- $count = $wpdb->get_var('SELECT COUNT(comment_ID) FROM ' . $wpdb->comments. ' WHERE comment_author_email = "' . get_comment_author_email() . '"');
- echo $count . ' comments';
- }
- ?>
Add Comment
Please, Sign In to add comment