勤美堂源码网

WordPress添加用户评论VIP等级的方法

24小时自助开通VIP,马上拥有站内全部资源 西部数码钻石代理商特价冲量 乐道主机 24小时自助开通VIP,马上拥有站内全部资源

  WordPress添加用户评论VIP等级的方法:根据评论次数不同显示不同的VIP等级,既让评论看着美观,又可以起到鼓励评论的作用。今天介绍一个给访客留言加VIP图标的方法,转自网络,记录下来以备后用。

  效果如下图:

  

WordPress添加用户评论VIP等级的方法 WordPress 用户评论 VIP等级 第1张


  修改方法

  以下修改方法以wpdx主题为例

  1、上传vip背景图片至主题图片目录wp-content/themes/wpdx/assets/images

  

WordPress添加用户评论VIP等级的方法 WordPress 用户评论 VIP等级 第2张


2、修改主题的style.css文件,在后面复制粘贴下面的代码(建议在后台的主题-编辑中修改,如果本地修改,不要用记事本打开,使用NotePad++编辑,下面的文件同样如此)

/*评论者VIP显示功能的样式*/.vp,.vip,.vip1,.vip2,.vip3,.vip4,.vip5,.vip6,.vip7{background: url(assets/images/vip.png) no-repeat;display: inline-block;overflow: hidden;border: none;}.vp{background-position:-515px -2px;width: 16px;height: 16px;margin-bottom: -3px;}.vp:hover{background-position:-515px -22px;width: 16px;height: 16px;margin-bottom: -3px;}.vip{background-position:-494px -3px;width: 16px;height: 14px;margin-bottom: -2px;}.vip:hover{background-position:-494px -22px;width: 16px;height: 14px;margin-bottom: -2px;}.vip1{background-position:-1px -2px;width: 46px;height: 14px;margin-bottom: -1px;}.vip1:hover{background-position:-1px -22px;width: 46px;height: 14px;margin-bottom: -1px;}.vip2{background-position:-63px -2px;width: 46px;height: 14px;margin-bottom: -1px;}.vip2:hover{background-position:-63px -22px;width: 46px;height: 14px;margin-bottom: -1px;}.vip3{background-position:-144px -2px;width: 46px;height: 14px;margin-bottom: -1px;}.vip3:hover{background-position:-144px -22px;width: 46px;height: 14px;margin-bottom: -1px;}.vip4{background-position:-227px -2px;width: 46px;height: 14px;margin-bottom: -1px;}.vip4:hover{background-position:-227px -22px;width: 46px;height: 14px;margin-bottom: -1px;}.vip5{background-position:-331px -2px;width: 46px;height: 14px;margin-bottom: -1px;}.vip5:hover{background-position:-331px -22px;width: 46px;height: 14px;margin-bottom: -1px;}.vip6{background-position:-441px -2px;width: 46px;height: 14px;margin-bottom: -1px;}.vip6:hover{background-position:-441px -22px;width: 46px;height: 14px;margin-bottom: -1px;}.vip7{background-position:-611px -2px;width: 46px;height: 14px;margin-bottom: -1px;}.vip7:hover{background-position:-611px -22px;width: 46px;height: 14px;margin-bottom: -1px;}

3、修改主题的functions.php文件,在后面复制粘贴下面的代码


//获取访客VIP样式function get_author_class($comment_author_email,$user_id){global $wpdb;$author_count = count($wpdb->get_results("SELECT comment_ID as author_count FROM $wpdb->comments WHERE comment_author_email = '$comment_author_email' "));$adminEmail = get_option('admin_email');if($comment_author_email ==$adminEmail) return;if($author_count>=1 && $author_count<3)echo '<a class="vip1" title="评论达人 LV.1"></a>';else if($author_count>=3 && $author_count<5)echo '<a class="vip2" title="评论达人 LV.2"></a>';else if($author_count>=5 && $author_count<10)echo '<a class="vip3" title="评论达人 LV.3"></a>';else if($author_count>=10 && $author_count<20)echo '<a class="vip4" title="评论达人 LV.4"></a>';else if($author_count>=20 &&$author_count<50)echo '<a class="vip5" title="评论达人 LV.5"></a>';else if($author_count>=50 && $author_count<100)echo '<a class="vip6" title="评论达人 LV.6"></a>';else if($author_count>=100)echo '<a class="vip7" title="评论达人 LV.7"></a>';}

4、将下面的代码加入到你需要放置的地方


 <?php if(user_can($comment->user_id, 1)){ echo '<a title="博主认证" class="vip7"></a><a class="vip" href=mailto:2157587@qq.com title="联系我吗?"></a>'; }else{ get_author_class($comment->comment_author_email,$comment->user_id);} ?>

一般也是在functions.php,在下面这行代码的后面:


<?php comment_author_link() ?>

wpdx主题在下面代码后


<?php comment_author_link() ?><?php edit_comment_link(__('Edit','cmp'),'&nbsp;&nbsp;',''); ?>

以下修改方法以wpdx主题为例

1、上传vip背景图片至主题图片目录wp-content/themes/wpdx/assets/images



本站提供的模板源码,仅供源码爱好者本地电脑环境下学习研究或2次开发使用,部分演示数据仅为网站模板整体美观或属性设置需要,不合适上线运营,下载后请自行24小时内删除数据。我们倡议:站长应该严格遵守互联网法律法规建站,净化网络,站长更有责!!!

发表评论

还没有评论,快来说点什么吧~

联系客服
网站客服 业务合作 Q交流群
51843834
返回顶部
 
QQ在线咨询
客服热线
139-3511-2134