Skip to content

Instantly share code, notes, and snippets.

@webgurus
Last active September 27, 2022 09:39
Show Gist options
  • Save webgurus/d3d916c5b95b152d08d8d4830aad048b to your computer and use it in GitHub Desktop.
Save webgurus/d3d916c5b95b152d08d8d4830aad048b to your computer and use it in GitHub Desktop.
<?php
/**
* Get 4 news item query
* @return array
*/
public static function blogPostsLoop($post_ids = array(), $post_type = 'post', $showposts = '4', $exclude_posts = array()) {
$blogposts_query = array(
'post_type' => $post_type,
'post_status' => 'publish',
'posts_per_page' => $showposts,
'showposts' => $showposts,
'post__in' => $post_ids,
'post__not_in' => $exclude_posts,
);
$blogposts_query = new WP_Query( $blogposts_query );
return $blogposts_query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment