Skip to content

Instantly share code, notes, and snippets.

@httpstersk
Created January 22, 2019 16:01
Show Gist options
  • Save httpstersk/eac80b71253eb882013b7f2e776daee5 to your computer and use it in GitHub Desktop.
Save httpstersk/eac80b71253eb882013b7f2e776daee5 to your computer and use it in GitHub Desktop.
➊➌ Add a new post with pre-defined title (saved as a draft)
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