KoderyBeta

Only Count Comments, Not Trackbacks

Category: WordPress - Owner: PaulDavis - Owner ID: 1

Filters the comment count to not include trackbacks.

// Only count comments, not comments & trackbacks
add_filter('get_comments_number', 'comment_count', 0);
function comment_count( $count ) {
	if ( ! is_admin() ) {
		global $id;
		$comments_by_type = &separate_comments(get_comments('status=approve&post_id=' . $id));
		return count($comments_by_type['comment']);
	} else {
		return $count;
	}
}