- <?php
- $args = array(
- ‘meta_key’ => ‘views’,
- ‘orderby’ => ‘views’,
- ‘order’ => ASC,
- ‘cat’=>1, //分类id
- ‘showposts’ => 5,
- );
- $arms = array_merge($args, $wp_query->query);
- query_posts($arms);
- if(have_posts()) : while(have_posts()) : the_post();
- ?>
- <div class=“box”>
- <div class=“title”><a href=“<?php the_permalink()?>” title=“” class=“more”>more</a><?php the_title(); ?></div>
- <div class=“info”>
- <div class=“imgs”><img src=“<?php echo post_thumb_src();?>” title=“” width=“148” height=“146” /></div>
- <div class=“text”>
- <?php
-
- echo wp_trim_words(get_the_content(),450,”);
- ?>
- </div></div>
- </div>
- <?php endwhile; ?>
- <?php else : ?>
- <p>暂无文章显示</p>
- <?php endif; ?>