Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Created July 19, 2017 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommcfarlin/27c66f5e7dd9278d6a6d73f403252a64 to your computer and use it in GitHub Desktop.
Save tommcfarlin/27c66f5e7dd9278d6a6d73f403252a64 to your computer and use it in GitHub Desktop.
[WordPress] How to Display Recent Custom Post Types (Excluding the Current Post)
<?php
use WP_Query;
function get_stories() {
return new WP_Query([
'posts_per_page' => 5,
'post_type' => 'story',
]);
}
<?php
use WP_Query;
function get_stories() {
return new WP_Query([
'post__not_in' => [ get_the_ID() ],
'posts_per_page' => 5,
'post_type' => 'story',
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment