Skip to content

Instantly share code, notes, and snippets.

@rolandinsh
Created August 4, 2012 18:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rolandinsh/3259153 to your computer and use it in GitHub Desktop.
Save rolandinsh/3259153 to your computer and use it in GitHub Desktop.
add itemprop to WordPress elements (image attributes)
<?php
/*
* @author umbrovskis
* @url http://simplemediacode.info/?post_type=snippets&p=920
*/
add_filter('wp_get_attachment_image_attributes', 'ipwp_img_attr', 10, 2);
function ipwp_img_attr($attr) {
$attr['itemprop'] = 'image';
return $attr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment