Skip to content

Instantly share code, notes, and snippets.

@rolandinsh
Created July 26, 2012 14:04
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 rolandinsh/3182211 to your computer and use it in GitHub Desktop.
Save rolandinsh/3182211 to your computer and use it in GitHub Desktop.
itemprop wp
<?php
/*
info: http://simplemediacode.info/snippets/itemprop-attributes-for-wordpress-serp-results/
as WordPress plugin http://wordpress.org/extend/plugins/itempropwp/
*/
add_filter('post_thumbnail_html','mediaboxlv_image_itemprop',10,3 );
function mediaboxlv_image_itemprop($html, $post_id, $post_image_id){
$html = str_replace('src',' itemprop="image" src',$html);
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment