Hello,
i get the error
Fatal error: Only variables can be passed by reference in /path/to/theme/functions.php on line 10
Here a the code from line 1 to 14
<?php
function ping_count() {
global $id;
$comments_by_type = &separate_comments(get_comments('post_id=' . $id));
return count($comments_by_type['pings']);
}
function comment_count() {
global $id;
$comments_by_type = &separate_comments(get_comments('post_id=' . $id));
return count($comments_by_type['comment']);
}
add_filter('get_comments_number', 'comment_count', 0);
?>
Where a the error?
Thanks for help.