Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $recent_posts = wp_get_recent_posts( array( 'numberposts' => '1' ) );
  2. $thePostID = $recent_posts[30]['ID'];
  3. $popular = new WP_Query(array(
  4. 'posts_per_page'=>3,
  5. 'post__not_in' => array($thePostID),
  6. 'meta_key'=>'popular_posts',
  7. 'orderby'=>'meta_value_num',
  8. 'order'=>'DESC'
  9. ));
  10. while ($popular->have_posts()) : $popular->the_post();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement