Skip to content

Instantly share code, notes, and snippets.

@Pross
Created October 7, 2019 15:23
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 Pross/e4f82af63755e455b28ed4c021c933ab to your computer and use it in GitHub Desktop.
Save Pross/e4f82af63755e455b28ed4c021c933ab to your computer and use it in GitHub Desktop.
add_action( 'pre_get_posts', function( $query ) {
if ( defined( 'REST_REQUEST' ) && REST_REQUEST ) {
$query->set( 'post_status', array( 'private', 'publish' ) );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment