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

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

WordPress添加用户评论VIP等级的方法-米酷主题

修改方法

以下修改方法以wpdx主题为例
1、上传vip背景图片至主题图片目录wp-content/themes/wpdx/assets/images

WordPress添加用户评论VIP等级的方法-米酷主题

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 '';
else if($author_count>=3 && $author_count<5)
echo '';
else if($author_count>=5 && $author_count<10)
echo '';
else if($author_count>=10 && $author_count<20)
echo '';
else if($author_count>=20 &&$author_count<50)
echo '';
else if($author_count>=50 && $author_count<100)
echo '';
else if($author_count>=100)
echo '';
}


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


if(user_can($comment->user_id, 1)){
echo '';
}else{
get_author_class($comment->comment_author_email,$comment->user_id);}

免责声明:
1. 本站所有资源来源于网络,仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请自负。
2. 如果您喜欢该源码,请支持购买正版,得到更好的正版服务。
3. 如果你有好源码或者教程,可以联系站长投稿,分享有金币奖励和额的外收入!
4. 本站提供的非本站原创资源都不包含技术服务请大家谅解!
5. 如有链接无法下载或失效,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 本站无法保证所有资源的准确性、安全性和完整性!
8. 如本站源码有侵权问题,请联系站长!