Home > 心 情 > 原主题风格成功修复

原主题风格成功修复

2008年12月14日 字体大小 发表评论 阅读评论

WP更新为2.7版本后发现这样的提示:
Fatal error: Only variables can be passed by reference in .../functions.php on line ...

已成功解决:

将主题风格下function.php中

$comments_by_type = &separate_comments(get_comments('post_id=' . $id));

替换为:

$get_comments= get_comments('post_id=' . $id);
$comments_by_type = &separate_comments($get_comments);

即可。OK, Now, it is working well after replacing the code. Enjoy!!!

分类: 心 情 标签: 浏览152 次
声明: 本站内容遵循 署名-非商业性使用-禁止演绎 2.5 共享协议. 原创文章转载 请注明转自 守望的麦子

相关文章 随机文章 本月热评 热门标签

      1. 本文目前尚无任何评论.
      1. 本文目前尚无任何 trackbacks 和 pingbacks.