Skip to content

Instantly share code, notes, and snippets.

@hmbashar
Created September 16, 2019 05:16
Show Gist options
  • Save hmbashar/45079fde3025045fef3e4c0f71447d4c to your computer and use it in GitHub Desktop.
Save hmbashar/45079fde3025045fef3e4c0f71447d4c to your computer and use it in GitHub Desktop.
Get total number of comment of the posts written by an author
<?php
$args = array(
'post_author' => '' // fill in post author ID
);
$author_comments = get_comments($args);
echo count($author_comments);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment