Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save carlaizumibamford/64f6ff12e053321b615752744c29e15d to your computer and use it in GitHub Desktop.
Save carlaizumibamford/64f6ff12e053321b615752744c29e15d to your computer and use it in GitHub Desktop.
Display published and private posts, if the user has the appropriate capability:
$args = array(
'post_status' => array( 'publish', 'private' ),
'perm' => 'readable',
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment