这几天小站不知怎么了,页面打开得都挺快的,就是提交评论慢死,实际上已经提交了,但页 面就是刷新不出来,卡住……
向GG大大请教,说大多是服务器负载过高的关系。嗨,服务器,我又折腾不到,所以索性自己动手丰衣足食,给小站加上了早以不稀奇的Ajax评论提交功能。经选择采用了Willin 童鞋的方法。
经过下午的折腾,已经修改出Simple-Lines主题专用美化版(comments-ajax.7z)。 使用方法:
1.解压——把 comments-ajax.js 及 comments-ajax.php 放在simplelines主题文件夹内;
2.在 header.php 中找到:
1 | <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> |
修改为:
1 2 3 4 | <?php if ( is_singular() ){ ?> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.3/jquery.min.js"></script> <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/comments-ajax.js"></script> <?php } ?> |
OK!就这么简单!再次感谢Willin童鞋!
另,有兴趣深入折腾的可前往《WordPress 內置嵌套評論專用 Ajax comments》。 ![]()
来源:http://immmmm.com/add-submit-ajax-comments.html




到此一游