当前位置:首页 > CMS教程 > WordPress > 列表

wordpress主题评论中怎么添加@reply回复

发布:smiling 来源: PHP粉丝网  添加日期:2014-03-18 11:06:03 浏览: 评论:0 

很多朋友要给自己主题评论加个@reply回复效果,都会选择用插件,其实我们可以完全修改源码来实现,下面我来给大家介绍wordpress主题评论中怎么添加@reply回复吧.

方法如下:

一、在评论页comments.php添加如下JS代码:

  1. <script language="javascript"
  2. //<![CDATA[ 
  3. function to_reply(commentID,author) { 
  4. var nNd='@'+author+':'
  5. var myField; 
  6. if (document.getElementById('comment') && document.getElementById('comment').type == 'textarea') { 
  7. myField = document.getElementById('comment'); 
  8. else { 
  9. return false
  10. if (document.selection) { 
  11. myField.focus(); 
  12. sel = document.selection.createRange(); 
  13. sel.text = nNd; 
  14. myField.focus(); 
  15. else if (myField.selectionStart || myField.selectionStart == '0') { 
  16. var startPos = myField.selectionStart; 
  17. var endPos = myField.selectionEnd; 
  18. var cursorPos = endPos; 
  19. myField.value = myField.value.substring(0, startPos) 
  20. + nNd 
  21. + myField.value.substring(endPos, myField.value.length); 
  22. cursorPos += nNd.length; 
  23. myField.focus(); 
  24. myField.selectionStart = cursorPos; 
  25. myField.selectionEnd = cursorPos; 
  26. else { 
  27. myField.value += nNd; 
  28. myField.focus(); 
  29. //]]> 
  30. </script> 

二、在functions.php中加入如下代码

  1. //@reply回复功能 
  2. function to_reply() { 
  3. ?> 
  4. <a onclick='to_reply("<?php comment_ID() ?>", "<?php comment_author();?>")' href="#respond" style="cursor:pointer;"/>[@reply]</a> 
  5. <?php 

三、在评论页<?php comment_author_link() ?>后边添加”回复按钮”,代码如下:

<strong><?php to_reply(); ?></strong>

Tags: wordpress主题评论 reply回复

分享到: