怪不得找了几个plugin都不能用 看来wordpress从2.7以后改动还是不少

稍微修改了一下这个Fervens A模板 让它能够正确支持自带的thread comment方法

主要参考的是这篇文章

Migrating Plugins and Themes to 2.7/Enhanced Comment Display

关键函数就是那个 wp_list_comments 调用callback函数来显示自定义的comment格式

最简单的用法比如 [php]wp_list_comments(‘type=comment&callback=mytheme_comment’);[/php] 然后在functions.php里写一下mytheme_comment函数即可