Time enough for love
Follow me on TwitterRSS Feeds
Sep 6th
Posted by Daniel in 术业
2 comments
怪不得找了几个plugin都不能用 看来wordpress从2.7以后改动还是不少
稍微修改了一下这个Fervens A模板 让它能够正确支持自带的thread comment方法
主要参考的是这篇文章
Migrating Plugins and Themes to 2.7/Enhanced Comment Display
关键函数就是那个 wp_list_comments 调用callback函数来显示自定义的comment格式
最简单的用法比如
wp_list_comments('type=comment&callback=mytheme_comment');
然后在functions.php里写一下mytheme_comment函数即可
2008 2009 2010 archlinux blogbus Cab Cutie Death For hack iphone javascript Jquery linux mac music science ubuntu web wordpress 今年流行语 半夜突然无聊症 呓语 太匆匆 时间足够你爱 梦境 模板 毕业季 汶川地震 科幻
WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.
原来wordpress2.7之后就自带了thread comments了
Sep 6th
Posted by Daniel in 术业
2 comments
怪不得找了几个plugin都不能用 看来wordpress从2.7以后改动还是不少
稍微修改了一下这个Fervens A模板 让它能够正确支持自带的thread comment方法
主要参考的是这篇文章
Migrating Plugins and Themes to 2.7/Enhanced Comment Display
关键函数就是那个 wp_list_comments 调用callback函数来显示自定义的comment格式
最简单的用法比如
wp_list_comments('type=comment&callback=mytheme_comment');然后在functions.php里写一下mytheme_comment函数即可