Skip to content

Instantly share code, notes, and snippets.

@httpstersk
Created January 31, 2019 20:15
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/a44d68d0aa2321d505b0466e6b560261 to your computer and use it in GitHub Desktop.
Save httpstersk/a44d68d0aa2321d505b0466e6b560261 to your computer and use it in GitHub Desktop.
➊➑ Retrieve the details of a specific post
const POST_ID = 25;
const { select } = wp.data;
const { getEntityRecords } = select( 'core' );
const [ postDetails ] = getEntityRecords( 'postType', 'post', { include: POST_ID } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment