Skip to content

Instantly share code, notes, and snippets.

@httpstersk
Last active February 9, 2019 17:37
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 httpstersk/94473258f63b2bb4cff9f6084abfaea9 to your computer and use it in GitHub Desktop.
Save httpstersk/94473258f63b2bb4cff9f6084abfaea9 to your computer and use it in GitHub Desktop.
➋➌ Save a post as a draft
const { dispatch } = wp.data;
const { editPost, savePost } = dispatch( 'core/editor' );
const setStatusToDraft = ( async () => {
await editPost( { status: 'draft' } );
await savePost();
} )();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment