WordPress模板博客主题模板知更鸟LTS新主题

JUMU实名认证 发表于 2018-12-12 08:20 | 显示全部楼层 | 复制链接分享      上一主题  翻页  下一主题
缩略图

简介

使用平台:WordPress 类别:前端模板

更多信息
WordPress知更鸟主题LTS新版本。begin主题自5.2之后已取消版本号,之后的版本号统一为LTS = Long Term Support,即为长期支持版。主题已经更新至begin-LTS版本。
演示网址:http://zmingcx.com

WordPress模板

WordPress模板

WordPress模板

WordPress模板

WordPress模板

WordPress模板

Begin最新主题使用指南.docx

文件大小:862.52 KB

begin.zip

文件大小:1019.34 KB

售价: 10 积分 [购买]

相关主题

精彩评论1

 楼主| JUMU实名认证 发表于 2019-03-02 21:41 | 显示全部楼层 | 复制链接分享
今天难得闲下空来,摸摸电脑,准备来优化下网站;浏览文章时不经意间看见知更鸟主题自带的评论等级图标有点平庸,于是想更改下评论等级图标;于是网上收集相关资料部署代码,虽说都有操作步骤讲解,奈何不适合Begin主题,functions.php文件添加了代码上传后,发现出现错误代码,经过1个多小时的折腾终于搞定,下面就分享下具体操作步骤.
效果演示
20180622175430.png
方法/步骤
一、注释/删除Begin主题目录下/inc/inc.php文件里的自带评论等级代码,这里我的使用的是Begin主题lts版本,把第1285行-1312行注释/删除代码,【快捷搜索:if (zm_get_option('vip')) {】;
二、注释/删除主题目录下/inc/comment-template.php文件里的引用评论等级代码,把第44行代码注释/删除操作,【快捷搜索:<?php if (zm_get_option('vip'))】
三、把以下代码添加到comment-template.php里<span class="comment-meta commentmetadata">前;


  1. <?php if(user_can($comment->user_id, 1)){
  2. echo '<a title="博主" class="vip"></a>';echo '<a class="vip7">'</a>;
  3. }else{
  4. get_author_class($comment->comment_author_email,$comment->user_id);}
  5. ?>
复制代码


四、添加样式,复制以下代码添加到style.css里,注意background:url(img/vip.png)目录;

  1.     /* VIP等级图标 */
  2. .vip,.vip1,.vip2,.vip3,.vip4,.vip5,.vip6,.vip7,.vp{background:url(img/vip.png) no-repeat;display:inline-block;overflow:hidden;border:none}
  3. .vp{background-position:-515px -2px;width:16px;height:16px;margin-bottom:-3px}
  4. .vp:hover{background-position:-515px -22px;width:16px;height:16px;margin-bottom:-3px}
  5. .vip{background-position:-494px -3px;width:16px;height:14px;margin-bottom:-2px}
  6. .vip:hover{background-position:-494px -22px;width:16px;height:14px;margin-bottom:-2px}
  7. .vip1{background-position:-1px -2px;width:46px;height:14px;margin-bottom:-1px}
  8. .vip1:hover{background-position:-1px -22px;width:46px;height:14px;margin-bottom:-1px}
  9. .vip2{background-position:-63px -2px;width:46px;height:14px;margin-bottom:-1px}
  10. .vip2:hover{background-position:-63px -22px;width:46px;height:14px;margin-bottom:-1px}
  11. .vip3{background-position:-144px -2px;width:46px;height:14px;margin-bottom:-1px}
  12. .vip3:hover{background-position:-144px -22px;width:46px;height:14px;margin-bottom:-1px}
  13. .vip4{background-position:-227px -2px;width:46px;height:14px;margin-bottom:-1px}
  14. .vip4:hover{background-position:-227px -22px;width:46px;height:14px;margin-bottom:-1px}
  15. .vip5{background-position:-331px -2px;width:46px;height:14px;margin-bottom:-1px}
  16. .vip5:hover{background-position:-331px -22px;width:46px;height:14px;margin-bottom:-1px}
  17. .vip6{background-position:-441px -2px;width:46px;height:14px;margin-bottom:-1px}
  18. .vip6:hover{background-position:-441px -22px;width:46px;height:14px;margin-bottom:-1px}
  19. .vip7{background-position:-611px -2px;width:46px;height:14px;margin-bottom:-1px}
  20. .vip7:hover{background-position:-611px -22px;width:46px;height:14px;margin-bottom:-1px}
复制代码


五、添加获取样式代码,复制以下代码添加到functions.php里;

  1.   //获取访客VIP样式
  2. function get_author_class($comment_author_email, $user_id){
  3. global $wpdb;
  4. $author_count = count($wpdb->get_results(
  5. "SELECT comment_ID as author_count FROM $wpdb->comments WHERE comment_author_email = '$comment_author_email' "));
  6. if($author_count>=1 && $author_count< 10 )//数字可自行修改,代表评论次数。
  7.     echo '<a class="vip1" title="评论达人 LV.1"></a>';
  8. else if($author_count>=11 && $author_count< 20)
  9.     echo '<a class="vip2" title="评论达人 LV.2"></a>';
  10. else if($author_count>=21 && $author_count< 40)
  11.     echo '<a class="vip3" title="评论达人 LV.3"></a>';
  12. else if($author_count>=41 && $author_count< 80)
  13.     echo '<a class="vip4" title="评论达人 LV.4"></a>';
  14. else if($author_count>=81 && $author_count< 160)
  15.     echo '<a class="vip5" title="评论达人 LV.5"></a>';
  16. else if($author_count>=161 && $author_count< 320)
  17.     echo '<a class="vip6" title="评论达人 LV.6"></a>';
  18. else if($author_count>=321)
  19.     echo '<a class="vip7" title="评论达人 LV.7"></a>';
复制代码


六、把以下图片保存到WordPress目录下的img文件夹里;

20180622175431.png

七、最后把以上文件分别上传到主题目录下对应的文件夹里即可

  距米网  

找到您想要的设计

工程师、学生在线交流学习平台
关注我们

手机版- 距米网 |苏公网安备32041102000587号

© 2017-2024 常州居居米智能技术有限公司 苏ICP备18040927号-1