Skip to content

Instantly share code, notes, and snippets.

@jeremyjaymes
Last active December 10, 2017 14:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremyjaymes/418003f5849719e17fae to your computer and use it in GitHub Desktop.
Save jeremyjaymes/418003f5849719e17fae to your computer and use it in GitHub Desktop.
Add Microdata to WordPress Thumbnails
/**
* Add microdata to WordPress thumbnails
*/
//* Using the_post_thumbnail
the_post_thumbnail( 'image-size', array( 'itemprop' => 'Photo' ) );
//* Using get_the_post_thumbnail
get_the_post_thumnail( 'image-size', array( 'itemprop' => 'Photo' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment