function comment_count( $count ) {
if ( ! is_admin() ) {
global $id;
$commenty = get_comments('status=approve&post_id=' . $id);
$comments_by_type = separate_comments($commenty);
return count($comments_by_type['comment']);
} else {
return $count;
}
}
$comments_by_type = &separate_comments(get_comments('status=approve&post_id=' . $id));
на это $comments_by_type = separate_comments(get_comments('status=approve&post_id=' . $id));