您好!欢迎来到模板下载吧!本站资源24小时自动发货,请放心选购,一次付费,终身下载,售后请提交工单!

wordpress顶和踩功能的实现

半岛未凉 2017-04-09 快速入门 2307 已收录 本文共8955个字,预计阅读需要23分钟。
  • 文章介绍
  • 快速入门
  • 增值服务

为了增加wordpress的互动性,在很多时候,我们会给一篇文章添加wordpress顶和踩功能,而这样一个简单的功能,我们可以通过插件来完成,但是比较好的插件并不多,要么是收费的,要么就是死位置的,不灵活,小编在最近写的一款笑话类wordpress主题的时候,也遇到这个问题,百度了很久,终究还是完成了wordpress顶和踩功能的实现!

教程说明

1、新建数据表

首先我们必须要新建一个数据表来储存文章投票的数据,我们必须要获取用户、文章的ID、投票内容等信息。。。

恩,创建数据表的方法如下代码,放入到wordpress主题的根目录functions.php文件内

  1. /*********更新重写规则***************/
  2. function ashu_load_theme() {
  3.     global $pagenow;
  4.     if ( is_admin() && 'themes.php' == $pagenow && isset( $_GET['activated'] ) )
  5.         ashu_vote_install(); //激活主题的时候执行函数   
  6. }
  7. add_action( 'load-themes.php', 'ashu_load_theme' );
  8. function ashu_vote_install(){
  9.     global $wpdb;
  10.     //创建 _post_vote表   
  11.     $table_name = $wpdb->prefix . 'post_vote';
  12.     if$wpdb->get_var("SHOW TABLES LIKE '$table_name'") != $table_name ) :
  13.     $sql = " CREATE TABLE `".$wpdb->prefix."post_vote` (
  14.       `id` BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY ,  
  15.       `user` INT NOT NULL ,  
  16.       `post` INT NOT NULL ,  
  17.       `rating` varchar(10),  
  18.       `ip` varchar(40)  
  19.      ) ENGINE = MYISAM DEFAULT CHARSET=utf8;";
  20.         require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
  21.         dbDelta($sql);
  22.     endif;
  23. }

2、准备投票和查询函数

然后我们要准备好投票的数据函数和数据查询函数,同样将如下代码放入functions.php文件内

a、数据函数的添加
  1. /*  
  2. *添加投票函数  
  3. *$post_id 文章id  
  4. *$user_id 用户ID  
  5. *$ip 用户IP  
  6. *$rating 投票内容  
  7. */
  8. function add_vote($post_id,$user_id='',$ip='',$rating='up'){
  9.     global $wpdb;
  10.     $user_id = (int)$user_id;
  11.     $post_id = (int)$post_id;
  12.     if(($user_id=='')&&($ip=='')){
  13.         return "e"//返回error   
  14.     }
  15.     //检查用户对某一文章是否已经投票票了   
  16.     if($user_id!=''){
  17.         $check"select * from ".$wpdb->prefix."post_vote where post='$post_id' and user='$user_id'";
  18.     }else{
  19.         if($ip!=''){
  20.             $check"select * from ".$wpdb->prefix."post_vote where post='$post_id' and ip='$ip'";
  21.         }
  22.     }
  23.     $coo = $wpdb->get_results($check);
  24.     //投票内容只能是up或者down   
  25.     if($rating=='up'){
  26.         $rating='up';
  27.     }else{
  28.         $rating='down';
  29.     }
  30.     //如果不存在数据   
  31.     if(!count($coo) > 0){
  32.         //插入数据 sql   
  33.         $s = "insert into ".$wpdb->prefix."post_vote (user,post,rating,ip) values('$user_id','$post_id','$rating','$ip')";
  34.         $wpdb->query($s);
  35.         return "y"//返回yes   
  36.     }else{
  37.         return "h"//返回have   
  38.     }
  39.     return "e";//返回error   
  40. }
b、数据查询函数的添加
  1. /*   
  2. *获取文章投票数据   
  3. *$post_id 文章ID   
  4. *$vote 投票内容   
  5. */
  6. function get_post_vote($post_id,$vote='up'){
  7.     global $wpdb;
  8.     $post_id = (int)$post_id;
  9.     if($vote == 'up'){
  10.         $vote='up';
  11.     }else{
  12.         $vote='down';
  13.     }
  14.     //查询数据sql   
  15.     $sql = "select count(*) from ".$wpdb->prefix."post_vote where post='$post_id' and rating='$vote'";
  16.     $coo = $wpdb->get_var($sql);
  17.     if($coo)
  18.     return $coo//返回数据   
  19.     else
  20.     return 0;
  21. }

3、整理前台的html和js调用

将上面的函数的创建后,后面我们就要输出wordpress顶和踩功能的前台代码了!

a、前台函数输出
  1. <span class="vote_up" id="<?php echo 'vote_up'.$post->ID;?>">
  2.     <a href="javascript:void(0);" rel="<?php echo 'up_',$post->ID;?>">
  3.     <span id="<?php echo 'vup'.$post->ID;?>">
  4.         <?php echo get_post_vote($post->ID,'up');?>
  5.     </span>
  6.     </a>
  7. 顶</span>
  8. <span class="vote_down" id="<?php echo 'vote_down'.$post->ID;?>">
  9.     <a href="javascript:void(0);" rel="<?php echo 'down_'.$post->ID;?>">
  10.     <span id="<?php echo 'vdown'.$post->ID;?>">
  11.         <?php echo get_post_vote($post->ID,'down');?>
  12.     </span>
  13.     </a>踩
  14. </span>

将上面的代码放到我们需要显示wordpress顶和踩功能的地方,通过上面的函数代码得出了下面输出的html,大家适量的修改即可!

b、前台函数输出
  1. <span class="vote_up" id="vote_up44">
  2.     <a href="javascript:void(0);" title="值得" rel="up_44">
  3.     <span id="vup44">
  4.         0
  5.     </span>
  6.     </a>
  7. 顶</span>
  8. <span class="vote_down" id="vote_down44">
  9.     <a href="javascript:void(0);" title="不值" rel="down_44">
  10.     <span id="vdown44">
  11.         1
  12.     </span>
  13.     </a>踩
  14. </span>
c、js的调用

在wordpress主题文件的footer.php里加入

  1. <script src="<?php echo get_template_directory_uri();?>/js/jquery-1.7.2.min.js"></script>
  2. <script type="text/javascript">var ajax_url = '<?php echo admin_url(); ?>admin-ajax.php';</script>
  3. <script src="<?php echo get_template_directory_uri();?>/js/ding.js"></script>

其中,jquery-1.7.2.min.js可以到网上下载,或者大家的主题里已经提供,那么就不需要调用,下面我们在主题文件夹的js文件下新建个ding.js,没有的创建一下,下面是ding.js的内容:

  1. /**     
  2.  * ding
  3.    
  4.  */
  5. function getCookie(name) {
  6.     var start = document.cookie.indexOf( name + "=" );
  7.     var len = start + name.length + 1;
  8.     if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) )
  9.         return null;
  10.     if ( start == -1 )
  11.         return null;
  12.     var end = document.cookie.indexOf( ';', len );
  13.     if ( end == -1 )
  14.         end = document.cookie.length;
  15.     return unescape( document.cookie.substring( len, end ) );
  16. }
  17. function ashu_isCookieEnable() {
  18.     var today = new Date();
  19.     today.setTime( today.getTime() );
  20.     var expires_date = new Date( today.getTime() + (1000 * 60) );
  21.     document.cookie = 'ashu_cookie_test=test;expires=' + expires_date.toGMTString() + ';path=/';
  22.     var cookieEnable = (getCookie('ashu_cookie_test') == 'test') ?  true : false;
  23.     //document.cookie = 'ludou_cookie_test=;expires=Fri, 3 Aug 2001 20:47:11 UTC;path=/';   
  24.     return cookieEnable;
  25. }
  26. jQuery(document).ready(function($) {
  27.     var ashu_token = 1;
  28.     $('.vote_up a').click(function(){
  29.         //检查浏览器是否启用cookie功能   
  30.         if( !ashu_isCookieEnable() ) {
  31.             alert("很抱歉,您不能给本文投票!");
  32.             return;
  33.         }
  34.         if( ashu_token != 1 ) {
  35.             alert("您的鼠标点得也太快了吧?!");
  36.             return false;
  37.         }
  38.         ashu_token = 0;
  39.         //获取投票a标签中的rel值   
  40.         var full_info = $(this).attr( 'rel' );
  41.         var arr_param = full_info.split( '_' ); //以字符"_"分割   
  42.         //发起ajax   
  43.         $.ajax({
  44.             url:ajax_url, //ajax地址   
  45.             type:'POST',
  46.             //请求的参数包括action   rating  postid三项   
  47.             data:'action=vote_post&rating=' + arr_param[ 0 ] + '&postid=' + arr_param[ 1 ],
  48.             //返回数据   
  49.             success:function(results){
  50.                 if(results=='n'){
  51.                     alert('评价失败');
  52.                     ashu_token = 1;
  53.                 }
  54.                 if (results=='y'){
  55.                     //如果成功,给前台数据加1   
  56.                     var upd_vd = 'vup' + arr_param[ 1 ];
  57.                     $('#'+upd_vd).text(parseInt($("#"+upd_vd).text())+1);
  58.                     ashu_token = 1;
  59.                 }
  60.                 if (results=='h'){
  61.                     ashu_token = 1;
  62.                     alert('已经发表过评价了');
  63.                 }
  64.                 if (results=='e'){
  65.                     ashu_token = 1;
  66.                     alert('评价失败');
  67.                 }
  68.             }
  69.         });
  70.     });
  71.     $('.vote_down a').click(function(){
  72.         if( !ashu_isCookieEnable() ) {
  73.             alert("很抱歉,您不能给本文投票!");
  74.             return;
  75.         }
  76.         if(ashu_token != 1) {
  77.             alert("您的鼠标点得也太快了吧?!");
  78.             return false;
  79.         }
  80.         ashu_token = 0;
  81.         var full_info = $(this).attr( 'rel' );
  82.         var arr_param = full_info.split( '_' );
  83.         $.ajax({
  84.             url:ajax_url,
  85.             type:'POST',
  86.             data:'action=vote_post&rating=' + arr_param[ 0 ] + '&postid=' + arr_param[ 1 ],
  87.             success:function(results){
  88.                 if(results=='n'){
  89.                     alert('评价失败');
  90.                     ashu_token = 1;
  91.                 }
  92.                 if (results=='y'){
  93.                     var upd_vd = 'vdown' + arr_param[ 1 ];
  94.                     $("#"+upd_vd).text(parseInt($("#"+upd_vd).text())+1);
  95.                     ashu_token = 1;
  96.                 }
  97.                 if (results=='h'){
  98.                     ashu_token = 1;
  99.                     alert('已经发表过评价了');
  100.                 }
  101.                 if (results=='e'){
  102.                     ashu_token = 1;
  103.                     alert('发生未知错误');
  104.                 }
  105.             }
  106.         });
  107.     });
  108. });

4、最终后台的php处理

将代码放到functions.php完成处理ajax请求,

  1. /*   
  2. *wp的ajax都可以通过请求中的action参数来执行对应的钩子   
  3. *示例中我们的action参数值是vote_post   
  4. *所以我们可以直接用下面两个钩子来执行动作   
  5. */
  6. add_action("wp_ajax_vote_post""add_votes_options");
  7. add_action("wp_ajax_nopriv_vote_post""add_votes_options");
  8. function add_votes_options() {
  9. if( isset($_POST['action']) && ($_POST['action'] == 'vote_post') ){
  10.     $postid = (int)$_POST['postid'];
  11.     if( !$postid ){
  12.         echo 'e'; //输出error   
  13.         die(0);
  14.     }
  15.     //cookie中是否已经存在投票数据   
  16.     $voted = $_COOKIE["smzdm_voted_".$postid];
  17.     if$voted ){
  18.         echo 'h'; //输出have   
  19.         die(0);
  20.     }
  21.     $ip = $_SERVER['REMOTE_ADDR'];//ip   
  22.     $rating = $_POST['rating']; //投票内容   
  23.     //判断用户是否登录   
  24.     if(  is_user_logged_in() ){
  25.         global $wpdb$current_user;
  26.         get_currentuserinfo();
  27.         $uid = $current_user->ID;
  28.     }else{
  29.         $uid='';
  30.     }
  31.     if($rating=='up'){
  32.         $rating='up';
  33.     }else{
  34.         $rating='down';
  35.     }
  36.     //添加数据   
  37.     $voted = add_vote($postid,$uid,$ip,$rating);
  38.     if($voted=='y'){
  39.         //设置cookie   
  40.         setcookie("ashu_voted_" . $postid,$rating, time() + 3000000, '/');
  41.         echo 'y';//输出yes   
  42.         die(0);
  43.     }
  44.     if($voted=='h'){
  45.         //设置cookie   
  46.         setcookie("ashu_voted_" . $postid,$rating, time() + 3000000, '/');
  47.         echo 'h';
  48.         die(0);
  49.     }
  50.     if($voted=='e'){
  51.         echo 'n';//输出no   
  52.         die(0);
  53.     }
  54. }else{
  55.     echo 'e';//输出eroor   
  56. }
  57. die(0);
  58. }

到这里,教程算是结束了,要提醒大家的是,功能集成到主题后,需要将主题重新安装后,数据表才会被添加!OK。。。大家尝试吧!

温馨提示:本文最后更新于2019年3月19日,已超过 2 年没有更新,如果文章内容或图片资源失效,请留言反馈,模板下载吧会及时处理,谢谢!

上一篇:

下一篇:

wordpress顶和踩功能的实现:等您坐沙发呢!
大牛,别默默的看了,快来点评一下吧!:)。

您必须登录后才能发表评论哦!:)

站内登录 QQ登录 微博登录
wordpress自适应高级图片shejigh主题

Hi, 如果你对这款模板有疑问,可以跟我联系哦!

联系作者

模板下载吧,累计帮助1000+用户成功建站,为草根创业提供助力!

立刻开启你的建站之旅
现在加入模板下载吧,注册一个账号
';
  • 模板下载吧拥有海量网站模板及源码,站长亲测干净无后门。

  • 注册即能下载免费模板栏目资源,帮您更快的完成网站建设。

  • 每日更新模板资源,每日精品推荐,及时获取最新模板资源流行去向。

  • 完美的售后服务,帮助草根站长、企业等成功建站。

  • 将您最爱的资源收藏,建立自己的资源库,并与朋友分享。