由于做网站需要,特意收藏了以下代码,wordpress按照浏览量调用文章代码:
- <?
- $args=array(
- 'numberposts'=>8,
- 'orderby'=>'meta_value_num',//按点击量排序
- 'meta_key'=>'views'
- );
- $rand_posts=get_posts($args);
- foreach($rand_posts as $post){
- setup_postdata($post);
- ?>
- <li>
- <a href="<?php the_permalink(); ?>" title="<? the_title(); ?>"><?php the_title(); ?></a>
- </li>
- <?}?>