Skip to content

Instantly share code, notes, and snippets.

@masumskaib396
Created March 14, 2020 11:58
Show Gist options
  • Save masumskaib396/0f00e310f0873cabad5b060da03a9a8e to your computer and use it in GitHub Desktop.
Save masumskaib396/0f00e310f0873cabad5b060da03a9a8e to your computer and use it in GitHub Desktop.
$blog_args = array(
'p' => get_the_ID(),
'post_type'=> 'post',
);
$mip_blogs = new WP_Query($blog_args);
$blog_arg = array(
'posts_per_page' => 20,
'post__not_in' => array(get_the_ID()),
'post_type'=> 'post',
);
$mip_blog = new WP_Query($blog_arg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment