网站地图    收藏   

主页 > 后端 > wordpress教程 >

WordPress Ajax 提交评论的实现思路与方法 - WordPre

来源:自学PHP网    时间:2014-11-28 23:41 作者: 阅读:

[导读] 直对 WordPress 的 Ajax 交互研究感兴趣,也一直很关注于这方面的技术,谈到 WordPress Ajax就不得不谈到评论 Ajax提交,作为一个博客、论坛评论的 Ajax 提交不仅可以改善用户体验,还可以大...

WordPress Ajax 提交评论的实现思路与方法

直对 WordPress 的 Ajax 交互研究感兴趣,也一直很关注于这方面的技术,谈到 WordPress Ajax就不得不谈到评论 Ajax提交,作为一个博客、论坛评论的 Ajax 提交不仅可以改善用户体验,还可以大幅缩减服务器开支,毕竟输出单条评论内容比重新组织输出一个页面要简单的多.

虽说现在访问量一直比较低,不存在服务器压力的问题,但一向注重用户体验的我,当然不能放弃这么一个提升用户体验的机会,今天抽了一下午的空,把这个主题的 Ajax 评论提交初步完成了.

根据自己主题不同结构,以下代码请自行调整,WordPress Ajax 提交评论 PHP 代码,在主题 function.php 文件中加入如下部分:

  1. //以下大部分代码出自 yinheli 经由该部分代码,排除部分错误、优化精简得出以下代码。 
  2. //yinheli博客不做了,所以这里就不给链接了。 
  3. //Edited by XiangZi DEC.17TH 2011 
  4. function fail($s) {//虚拟错误头部分 
  5.     header('HTTP/1.0 500 Internal Server Error'); 
  6.     echo $s
  7.     exit
  8. function ajax_post_comment_slow (){ 
  9.  fail('用不用说这么快?想好了再说!'); 
  10. //评论太快输出代码。 
  11. add_filter('comment_flood_trigger','ajax_post_comment_slow', 0); 
  12. //挂一个评论太快,返回内容的钩子 
  13. function ajax_comment(){ 
  14. // Ajax php 响应部分代码 
  15. if($_POST['action'] == 'ajax_comment') { 
  16.     global $wpdb$db_check
  17.         // Check DB 
  18.         if(!$wpdb->dbh) { 
  19.             echo('Our database has issues. Try again later.'); 
  20.    die(); 
  21.         }  
  22. nocache_headers(); 
  23. $comment_post_ID = (int) $_POST['comment_post_ID']; 
  24.  $status = $wpdb->get_row("SELECT post_status, comment_status FROM $wpdb->posts WHERE ID = '$comment_post_ID'"); 
  25. if ( emptyempty($status->comment_status) ) { 
  26. //这一套判断貌似抄的 wp 源代码 。详见:include/comment.php 
  27.     do_action('comment_id_not_found'$comment_post_ID); 
  28.     fail('The post you are trying to comment on does not currently exist in the database.'); 
  29. elseif ( 'closed' ==  $status->comment_status ) { 
  30.     do_action('comment_closed'$comment_post_ID);; 
  31.     fail('Sorry, comments are closed for this item.'); 
  32. elseif ( in_array($status->post_status, array('draft''pending') ) ) { 
  33.     do_action('comment_on_draft'$comment_post_ID); 
  34.     fail('The post you are trying to comment on has not been published.'); 
  35. $comment_author       = trim(strip_tags($_POST['author'])); 
  36. $comment_author_email = trim($_POST['email']); 
  37. $comment_author_url   = trim($_POST['url']); 
  38. $comment_content      = trim($_POST['comment']); 
  39. // If the user is logged in 
  40. $user = wp_get_current_user(); 
  41. if ( $user->ID ) { 
  42.     $comment_author       = $wpdb->escape($user->display_name); 
  43.     $comment_author_email = $wpdb->escape($user->user_email); 
  44.     $comment_author_url   = $wpdb->escape($user->user_url); 
  45.     if ( current_user_can('unfiltered_html') ) { 
  46.         if ( wp_create_nonce('unfiltered-html-comment_' . $comment_post_ID) != $_POST['_wp_unfiltered_html_comment'] ) { 
  47.             kses_remove_filters(); // start with a clean slate 
  48.             kses_init_filters(); // set up the filters 
  49.         } 
  50.     } 
  51. else { 
  52.     if ( get_option('comment_registration') ) 
  53.         fail('火星人?注册个?'); 
  54. $comment_type = ''
  55. if ( get_option('require_name_email') && !$user->ID ) { 
  56.     if ( 6> strlen($comment_author_email) || '' == $comment_author ) 
  57.         fail('Oopps,名字[Name]或邮箱[email]不对。'); 
  58.     elseif ( !is_email($comment_author_email)) 
  59.         fail('Oopps,邮箱地址[Email]不对。'); 
  60. if ( '' == $comment_content ) 
  61.     fail('是不是应该写点什么再提交?'); 
  62. // Simple duplicate check 
  63. $dupe = "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = '$comment_post_ID' AND ( comment_author = '$comment_author' "
  64. if ( $comment_author_email ) $dupe .= "OR comment_author_email = '$comment_author_email' "
  65. $dupe .= ") AND comment_content = '$comment_content' LIMIT 1"
  66. if ( $wpdb->get_var($dupe) ) { 
  67.     fail('评论重复了!有木有!'); 
  68. $commentdata = compact('comment_post_ID''comment_author''comment_author_email''comment_author_url''comment_content''comment_type''user_ID'); 
  69. if( !$user->ID ){ 
  70.  $result_set = $wpdb->get_results("SELECT display_name, user_email FROM $wpdb->users WHERE display_name = '" . $comment_author . "' OR user_email = '" . $comment_author_email . "'"); 
  71.  if ($r(www.111cn.net)esult_set) { 
  72.  if ($result_set[0]->display_name == $comment_author){ 
  73.  fail('博主你也敢冒充?'); 
  74.  } else { 
  75.  fail('博主你也敢冒充?'); 
  76.  } 
  77.  } 
  78. $comment_id = wp_new_comment( $commentdata ); 
  79. $comment = get_comment($comment_id); 
  80.  
  81. if( !$user->ID ){ 
  82.  setcookie('comment_author_' . COOKIEHASH, $comment->comment_author, time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); 
  83.  setcookie('comment_author_email_' . COOKIEHASH, $comment->comment_author_email, time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); 
  84.  setcookie('comment_author_url_' . COOKIEHASH, clean_url($comment->comment_author_url), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); 
  85. @header('Content-type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); 
  86.  xz_comment($comment, null);//这是我的调用评论函数,换成你的函数名。 
  87.  die(); 
  88. add_action('init''ajax_comment'); 

Javascript 中代码,注意,以下代码需要 Jquery 框架支援,javascript onload 代码中加入以下部分:

  1. if (jQuery('#commentform').length) { 
  2.     jQuery('#commentform').submit(function(){     
  3. // 截获提交动作 
  4. //ID为 commentform 的表单提交时发生的函数,也就是整个留言输入框 form 的ID。 
  5.   var ajaxCommentsURL = window.location.href; 
  6.         jQuery.ajax({ 
  7.             url: ajaxCommentsURL, 
  8.             data: jQuery('#commentform').serialize()+'&action=ajax_comment',     
  9.             type: 'POST'
  10.             beforeSend: function() { 
  11.                 jQuery('#commenterror').hide(); 
  12.                 jQuery('#commentload').fadeIn(); 
  13.             }, 
  14.             error: function(request) {    //发生错误时 
  15.                 jQuery('#commenterror').html(request.responseText); 
  16.                 jQuery('#commentload').hide();    //隐藏  submit 
  17.                 jQuery('#commenterror').fadeIn(); //显示 error  
  18.             }, 
  19.             success: function(data) { 
  20.                 jQuery('textarea').each(function(){ 
  21.                     this.value=''
  22.                 }); 
  23.                 jQuery('#commenterror').fadeOut(); 
  24.                 if(jQuery(".commentlist li.comment").first().length != 0){jQuery(".commentlist li.comment").first().before(data)}    
  25.                 else {jQuery("ol.commentlist").append(data)} 
  26.                 jQuery(".commentlist li.comment").first().hide(0,function(){$(this).slideDown(1000)}); 
  27.                 jQuery('#cmt-submit').attr('disabled'true).css({"background-color":"#6C6C6C","color":"#E0E0E0"}); 
  28.                 jQuery('#commentload').fadeOut(1600); 
  29.   setTimeout(function() { 
  30.                 jQuery('#cmt-submit').removeAttr('disabled').css({"background-color":"#0086C5","color":"#FFFFFF"}); 
  31.                 },3000);  
  32.             } 
  33.         }); 
  34.        return false
  35.    } ); 

注:代码仍有改进需求,因为没有时间,所以就没有再进化.

CSS 代码,css 随意部分添加:

  1. #commentload,#commenterror{ 
  2.  displaynone
  3.  margin5px 0 0 0
  4.  color:#D29A04
  5.  floatleft
  6.  font-size:16px
  7.  padding:0 0 0 20px
  8. #commentload{ 
  9.  backgroundurl("img/loading.gif"no-repeat bottom left ; 
  10. #commenterror{ 
  11.  backgroundurl("img/error.png"no-repeat bottom left ; 

原理、思路

原理:Javascript 提交数据,php响应并输出结果,Javascript 得到结果并显示.

思路:点击提交按钮后,Javascript 截获提交动作,截获提交的各项数据(Name、Email、Web、Comment-text)利用 Javascript Jquery 模拟浏览器提交POST(Name、Email、Web、Comment-text)请求之WordPress,Function.php 文件中构造一个接受请求的函数,即本列中ajax_comment函数,如果请求无错误,输出正确结果,如果请求有错误,输出错误结果,Javascript 获得正确结果,动态添加到评论列表中,Javascript 获得错误结果,动态添加到提交提示栏.

改进:提交按钮在点击至获得返回结果后3秒的时间里应该都是变灰失效状态,这一点之前因为在本机测试,提交瞬间完成没有注意到,远程测试的时候发现了,但要改的话还要进行测试,时间太紧就不改了,有机会再改进一下.

总结:因为 WordPress 主题中评论样式的自由性、多样性,所以貌似至今一直没有一款通用性的AJAX 评论插件,一些高手也只能在优化自己博客之余,把思路和部分通用核心代码做一下公布,所以想要实现一些炫酷的功能要不有高人帮你,要不你就只能好好学代码,期待有一日能够厚积薄发了,效果请自行提交评论验证.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论