Всем доброго времени суток!
После обновления Wordpress на сайте появились ошибки в файлах шаблона:
Notice: Only variables should be passed by reference in /var/site-ru/wp-content/themes/theme1692/functions.php on line 72
Notice: Only variables should be assigned by reference in /var/site-ru/wp-content/themes/theme1692/functions.php on line 72
67) // Removes Trackbacks from the comment cout
68) add_filter('get_comments_number', 'comment_count', 0);
69) function comment_count( $count ) {
70) if ( ! is_admin() ) {
71) global $id;
72) $comments_by_type = &separate_comments(get_comments('status=approve&post_id=' . $id));
73) return count($comments_by_type['comment']);
74) } else {
75) return $count;
76) }
77) }
Как можно это поправить?