Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <div class="right-side col-sm-4 ssdsds">
  2.  
  3. <div class="popular-group">
  4.  
  5. <div class="rightside-title-group">
  6. <div class="rightside-icon"> <img src="<?php bloginfo('template_url'); ?>/images/icon-popular.png" alt="" /> </div>
  7. <div class="rightside-title"><h2>Popular</h2></div>
  8. </div><!--./rightside-title-group -->
  9.  
  10.  
  11. <?php
  12. query_posts('posts_per_page=4&meta_key=post_views_count&orderby=meta_value_num&order=DESC');
  13. if (have_posts()) : while (have_posts()) : the_post(); ?>
  14.  
  15.  
  16.  
  17.  
  18. <div class="popular-box">
  19. <!--<div class="popular-img col-sm-4 col-xs-4"> <?php //the_post_thumbnail(array(300,300)); ?> </div>-->
  20. <div class="popular-content col-sm-12 col-xs-12">
  21. <div class="popular-title"><a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a> </div>
  22. <div class="popular-text"> <?php
  23. $excerpt = get_the_excerpt();
  24. echo string_limit_words($excerpt,15);
  25. ?><a href="<?php the_permalink(); ?>"> &nbsp;&nbsp; more...</a> </div>
  26. </div>
  27. </div><!--./popular-box -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement