Skip to content

Instantly share code, notes, and snippets.

@danemorgan
Created September 14, 2013 05:23
Show Gist options
  • Save danemorgan/6559028 to your computer and use it in GitHub Desktop.
Save danemorgan/6559028 to your computer and use it in GitHub Desktop.
Get the number of comments posted by user with specified email address.
function count_user_comments($user_email) {
$args = array(
'author_email' => $user_email
);
$user_comments_count = get_comments( $args );
return count($user_comments_count);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment