Last active
February 9, 2019 17:37
-
-
Save httpstersk/94473258f63b2bb4cff9f6084abfaea9 to your computer and use it in GitHub Desktop.
➋➌ Save a post as a draft
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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