wordpress按文章点击次数排序(调用热门文章)

  1. <?php
  2. $args = array(
  3.     ‘meta_key’ => ‘views’,
  4.     ‘orderby’   => ‘views’,  // 须 WordPress 2.8 及以上版本
  5.     ‘order’ => ASC,
  6.     ‘cat’=>1,  //分类id
  7.     ‘showposts’ => 5,
  8. );
  9. $arms = array_merge($args, $wp_query->query);
  10. query_posts($arms);
  11. if(have_posts()) : while(have_posts()) : the_post();
  12.  ?>
  13.   <div class=“box”>
  14.  <div class=“title”><a href=“<?php the_permalink()?>” title=“” class=“more”>more</a><?php the_title(); ?></div>
  15.  <div class=“info”>
  16.  <div class=“imgs”><img src=“<?php echo post_thumb_src();?>” title=“” width=“148” height=“146”  /></div>
  17.  <div class=“text”>
  18.     <?php //echo wp_trim_words(the_content(),50,”); 
  19.      // the_content();
  20. echo wp_trim_words(get_the_content(),450,);
  21.     ?>
  22.     </div></div>
  23. </div>
  24. <?php endwhile; ?>
  25. <?php else : ?>
  26. <p>暂无文章显示</p>
  27. <?php endif; ?>

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

www.admin122.com 关注微信
24小时客服在线