Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save danielpowney/565d21c0f133a2e4124ab11fa2be4109 to your computer and use it in GitHub Desktop.
Save danielpowney/565d21c0f133a2e4124ab11fa2be4109 to your computer and use it in GitHub Desktop.
<?php
/**
* Adds itemprop=aggregateRating
*
* @param unknown $microdata
* @param unknown $post_id
* @return string
*/
function mrp_microdata_aggregate_rating_attributes( $microdata, $post_id ) {
return 'itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating"';
}
add_filter( 'mrp_microdata_aggregate_rating_attributes', 'mrp_microdata_aggregate_rating_attributes', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment