function fcc_get_count_comments_author($author)
- Returns the number of comments made by someone with this display name
- parameters: $author: name of user to count comments for
function fcc_get_count_comments_authorID($authorID)
- same as above, but based on ID instead of the author's name
- parameters: $authorID: name of user to count comments for
function fcc_count_comments_author($zero='0 comments', $one='1 comment', $more='%c comments')
- Displays the number of comments made by the author who is currently logged in
- parameters: $zero, $one, $more: %c get replaced with the number of comments.
function fcc_count_comments_by_author($zero='0 comments', $one='1 comment', $more='%c comments', $author)
- Displays the number of comments made by a specified author with this display name
- parameters: $zero, $one, $more: %c get replaced with the number of comments, $author: the authors display name
function fcc_count_comments_by_authorID($zero='0 comments', $one='1 comment', $more='%c comments', $authorID)
- same as above, but based on ID instead of the author's name
- parameters: $zero, $one, $more: %c get replaced with the number of comments, $authorID: the authors id