Skip to content

Instantly share code, notes, and snippets.

@httpstersk
Created January 11, 2019 08:10
Show Gist options
  • Save httpstersk/994ba38fb075b07d55a45c3e56ae9553 to your computer and use it in GitHub Desktop.
Save httpstersk/994ba38fb075b07d55a45c3e56ae9553 to your computer and use it in GitHub Desktop.
➎ Get the url of the current featured image
const { select } = wp.data;
const { getMedia } = select( 'core' );
const { getEditedPostAttribute } = select( 'core/editor' );
const mediaId = getEditedPostAttribute('featured_media');
const mediaUrl = getMedia(mediaId).source_url;
console.log(mediaUrl);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment