WordPress添加用户评论VIP等级的方法:根据评论次数不同显示不同的VIP等级,既让评论看着美观,又可以起到鼓励评论的作用。今天介绍一个给访客留言加VIP图标的方法,转自网络,记录下来以备后用。
效果如下图:
修改方法
以下修改方法以wpdx主题为例
1、上传vip背景图片至主题图片目录wp-content/themes/wpdx/assets/images
2、修改主题的style.css文件,在后面复制粘贴下面的代码(建议在后台的主题-编辑中修改,如果本地修改,不要用记事本打开,使用NotePad++编辑,下面的文件同样如此)
.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'),' ',''); ?>
以下修改方法以wpdx主题为例
1、上传vip背景图片至主题图片目录wp-content/themes/wpdx/assets/images
资源均来自第三方,谨慎下载,前往第三方网站下载