Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $post_ids=array(100,200,300,400,500,600,700,800,900,1000);
  2. $orderby_post_ids = array(300,800,500);
  3. //$order=Ascending/ Descending;
  4.  
  5. $args = array(
  6. 'post_type' => 'mycourses',
  7. 'posts_per_page' => 4,
  8. 'orderby' => 'post__in',
  9. 'order' => 'ASC',
  10. 'post__in' => $post_ids,
  11. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement