Skip to content

Instantly share code, notes, and snippets.

@httpstersk
Created January 16, 2019 13:59
Show Gist options
  • Save httpstersk/ea3c267d13b703571b91103e7fd39e5b to your computer and use it in GitHub Desktop.
Save httpstersk/ea3c267d13b703571b91103e7fd39e5b to your computer and use it in GitHub Desktop.
➓ Set & get a custom post meta
const { dispatch, select } = wp.data;
const { editPost } = dispatch( 'core/editor' );
const { getEditedPostAttribute } = select( 'core/editor' );
editPost({ meta: { is_special: true } })
const isSpecial = getEditedPostAttribute( 'meta' )[ 'is_special' ];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment