Skip to content

Instantly share code, notes, and snippets.

@stompweb
Last active February 24, 2017 12:25
Show Gist options
  • Save stompweb/ad5713a86583e564266c37a01df00f15 to your computer and use it in GitHub Desktop.
Save stompweb/ad5713a86583e564266c37a01df00f15 to your computer and use it in GitHub Desktop.
<?php
function get_items_by_ids( $post_type = 'post', $post_ids = '' ) {
$items = new WP_Query([
'post_status' => 'publish',
'post_type' => $post_type,
'showposts' => 100,
'post__in' => $post_ids,
'orderby' => 'post__in',
]);
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment