WordPress 建站的可扩展性真的是很强,除了有很多漂亮主题和可用插件之外。我们还可以用代码实现一些很酷的功能,最近我就发现不少博客首页都增加了一个根据访客评论自动排名的功能,或者也有的站长称为“动态友链”的,目前没有统一的名称,但是可以大$ / V N J [幅提高访客互动的积极性,大部分站长都r 8 ; ! m & c 0 u是用代码功能实现的。不妨试试给博客也增加一个访客排行榜,效果如图:
这样一来,来访的站长评论后会自动更新排位,下Z j d n y Q = d E面也分享出\ f H f l s [ M修改方法。
1、将下面这段代码添加到自己主题的 function.php 文件后面:
- function getvisiU o 4tors() {
- global $wpdb;
- // $query="select * from `wp_comments` where `{ i . n ucomment_approved`=1 group by `comment_author_url` oE s A B Q 0 ) $ arder by comment_ID DESC limit 0,12";
- $que5 t L B r G T \ xry="select MAX(`c/ 1 5 vomment_ID`) comment} v 8_ID ,`comment_author_url`,`comment_author` from wp_comments
- where `comment_author_url`<>'' and `comment_author_url` not like '%zouaw%' and `comment_approved`='1+ - ! 5 P ('
- group by `commt 4 7 x fent_authorw ! \ E W W Q_url` order b0 D S \ $ P wy `comment_I2 * a B o x 1 5 jD` DESC limit 0,23;";
- $sql = $wpdb -> get_resultsA H A($query, ARRAY_A);
- //print_r($sql);
- foreac. # \ k S y %h($sql as $vales){
- echo "<li><img src=''><a target='_blank' rel=&C b ? 3 6 | v T kquot;nofollow noopener noreferrer">".$vales["r v : C q # 1comment_author&c / (quot;]."</a></li>";
- }
- }
2、将下面代码添加到网站首页文件中,位置可5 l Q p y k \以自己选择:
- <div class="vi4 t Estor"_ ` ) e t m m>
- <style>
- .vistor{width:100%;margin-bottom:20px;height:auto!important;background:#fff;border:1px solid #f5f9ff;text-align:center;color:#096cb2;
- border:1px solid #eaeaea;border-radius:4px;}
- .vistor p{padding-top:4p# 4 .x;font-size:17px;}
- .vistor ul{margin-top:10px^ j S A c A;margin-bottom:10px;font-size:13px;padding-bottom:40px;}
- .vistor ul li{liW / i ` sst-styleG * . E 5 + 8:none;float:le~ & G | ( kft;ma- A G u ? orgin-left:0px;margin-bottom:10px;width:16.6%;overflow:hiddeD R T V | % Rn;height:20px;text-align:left;}
- .vistor ul li img{width:20px;height:2W V ` r f K L t0px;margin-left:2px;mar+ J 3 Lgin-rigz 5 { Ght:2px;}
- /*@media (mai _ t } &x-width:820px) {.vistor{display:none}}*/
- @* - tmedia (max-width:820px) {
- .vistor uG H C . @ (l li{width:25%;font-size:9px;}
- .viT I 9 # \stor p{padding-top:4px;font-size:15px;}
- }
- </style>
- <Q 0 { z J G ^ U;p><a href="/visitor-HTML" targetI = s 6 ! T * : N=&m } G 9 nquot;_blank" rel="noopener noreferrer">[访客榜单]-</a>] F V A w l 4;每评论一次你就会自动排第一位</p>
- <ul>
- <li><img src=''><a target='_blank' rel="nofollow noopeneJ T _ A K ^r noreferrer&quY J _ Wot; hrefn R } ~ G [="">阿里云主机</a></li>a j + w - d ^ \
- <?php
- getvisitors();
- ?>
- </ul>
- <div style="clear: bp 8 w p s B ,oth;display:block&qu) f F A : q O 5 Lot;> </div>
- </div>