Created
January 22, 2019 16:01
-
-
Save httpstersk/eac80b71253eb882013b7f2e776daee5 to your computer and use it in GitHub Desktop.
➊➌ Add a new post with pre-defined title (saved as a draft)
This file contains hidden or 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 { saveEntityRecord } = dispatch( 'core' ); | |
const newPost = { title: 'Guten Tag, Gutenberg!' }; | |
saveEntityRecord( 'postType', 'post', newPost ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment