Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Last active March 3, 2017 04:36
Show Gist options
  • Save Kaiderella/3d192abf49cd7211a186d4652ff5e348 to your computer and use it in GitHub Desktop.
Save Kaiderella/3d192abf49cd7211a186d4652ff5e348 to your computer and use it in GitHub Desktop.
Bộ đếm số lượng bình luận
function wpcb_count_user_comments() {
global $wpdb;
$count = $wpdb->get_var(
'SELECT COUNT(comment_ID) FROM ' . $wpdb->comments. '
WHERE comment_author_email = "' . get_comment_author_email() . '"
AND comment_approved = "1"
AND comment_type IN ("comment", "")'
);
return $count . ' comments';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment