Guest User

Untitled

a guest
Jun 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'posts_per_page' => 6,
  4. 'post_type' => 'post',
  5. 'post_status' => 'publish',
  6. 'orderby' => 'post_views',
  7. 'order' => 'DSC'
  8. );
  9.  
  10. $query = new WP_Query( $args );
  11. if ( $query->have_posts() ) : ?>
  12. <?php while ( $query->have_posts() ) : $query->the_post(); ?>
  13. <h1><a href="<?php the_permalink(); ?>"><?php echo get_the_title(); ?></a></h1>
  14. <?php endwhile; endif; ?>
Add Comment
Please, Sign In to add comment