WordPress网站制作热门文章排行榜,按浏览量排序
使用Wordpress做网站,有时需要在网站的侧边栏调用热门文章,我们经常是按评论数进行排序的,今天介绍一下如…
使用Wordpress做网站,有时需要在网站的侧边栏调用热门文章,我们经常是按评论数进行排序的,今天介绍一下如何调用以浏览量排序的热门文章的方法。
在自己的WORDPRESS网站模板函数文件functions.php中添加以下的浏览量函数代码;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
/*文章浏览量*/ |
在需要调用按浏览量排序的热门文章位置,使用以下的代码进行调用文章列表;
1 2 3 4 5 6 7 8 9 10 11 |
<ul> <?php $args=array( ‘meta_key’ => ‘post_views_count’, ‘orderby’ => ‘meta_value_num’, ‘posts_per_page’=>6, ‘order’ => ‘DESC’ ); query_posts($args); while (have_posts()) : the_post();?> <li><a href=“<?php the_permalink(); ?>”><?php the_title(); ?></a><span class=“kc-view fright”>浏览:<?php setPostViews(get_the_ID()); echo number_format(getPostViews(get_the_ID())); ?></span></li> <?php endwhile;wp_reset_query();?> </ul> |
这样就可以调用出用户浏览最多的6篇文章了。
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!