为网站添加了“每评论一次你就会自动排第一位”欢迎来踩

图片[1]-为网站添加了“每评论一次你就会自动排第一位”欢迎来踩-李峰博客

很早的时候看到boke112导航首页最新评论排第一非常好,但是由于自己技术有限,一直没有添加成功,后来又试过蝈蝈要安静的教程还是出现各种错误代码。

wordpress建站的可扩展性真的是很强,除了有很多漂亮主题和可用插件之外。我们还可以用代码实现一些很酷的功能,最近我就发现不少博客首页都增加了一个根据访客评论自动排名的功能,或者也有的站长称为“动态友链”的,目前没有统一的名称,但是可以大幅提高访客互动的积极性。大部分站长都是用代码功能实现的。我也把代码转载一下啊,以备刘少博客以后也增加一个访客排行榜。

这样一来,来访的站长评论后会自动更新排位,下面也分享出修改方法。

1、将下面这段代码添加到自己主题的function.php文件后面:

  1. //添加访客榜单
  2. function getvisitors() {
  3. global $wpdb;
  4. // $query="select * from `wp_comments` where `comment_approved`=1 group by `comment_author_url` order by comment_ID DESC limit 0,12";
  5. $query="select MAX(`comment_ID`) comment_ID ,`comment_author_url`,`comment_author` from wp_comments
  6. where `comment_author_url`<>'' and `comment_author_url` not like '%zouaw%' and `comment_approved`='1'
  7. group by `comment_author_url` order by `comment_ID` DESC limit 0,23;";
  8. $sql = $wpdb -> get_results($query, ARRAY_A);
  9. //print_r($sql);
  10. foreach($sql as $vales){
  11. echo "<li><img src='https://www.ezliushao.com/wp-content/themes/Nana/images/timg-1.gif'><a target='_blank' rel='nofollow' href=".$vales["comment_author_url"].">".$vales["comment_author"]."</a></li>";
  12. }
  13.  
  14. }

2、将下面代码添加到网站首页文件中,位置可以自己选择:

  1. <!-- 访客榜单开始 -->
  2. <div class="vistor">
  3. <style>
  4. .vistor{width:100%;margin-bottom:20px;height:auto!important;background:#fff;border:1px solid #f5f9ff;text-align:center;color:#096cb2;
  5. border:1px solid #eaeaea;border-radius:4px;}
  6. .vistor p{padding-top:4px;font-size:17px;}
  7. .vistor ul{margin-top:10px;margin-bottom:10px;font-size:13px;padding-bottom:40px;}
  8. .vistor ul li{list-style:none;float:left;margin-left:0px;margin-bottom:10px;width:16.6%;overflow:hidden;height:25px;text-align:left;}
  9. .vistor ul li img{width:20px;height:20px;margin-left:2px;margin-right:2px;}
  10. /*@media (max-width:820px) {.vistor{display:none}}*/
  11. @media (max-width:820px) {
  12. .vistor ul li{width:25%;font-size:9px;}
  13. .vistor p{padding-top:4px;font-size:15px;}
  14. }
  15. </style>
  16. <p><a href="/visitor-html" target="_blank">[访客榜单]-</a>每评论一次你就会自动排第一位</p>
  17. <ul>
  18. <li><img src='https://www.ezliushao.com/wp-content/themes/Nana/images/timg-1.gif'>
  19. <a target='_blank' rel='nofollow' href='https://www.ezliushao.com/'>刘少技术博客</a></li>
  20. <?php
  21. getvisitors();
  22. ?>
  23. </ul>
  24. <div style="clear: both;display:block"> </div>
  25. </div>
  26. <!-- 访客榜单结束 -->

其他说明:

  • 一般情况下你的首页文件为主题目录的index.php
  • 如果在不是index.php,也会在其中调用其他php文件
  • 如果出现兼容性问题,或者文字不能居中图片中间,请添加下面一行样式至<style>标签对中:
  • 红色部分可以修改为自己的图片、链接等等
  1. .vistor ul li img{position:relative;top:5px}

文章来自:wordpress网站添加英雄榜(访客排行)最新评论排第一

© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享