Merge pull request #14353 from woocommerce/fix/itemreviewed-data

Restores itemReviewed structured data for product reviews
This commit is contained in:
Claudio Sanches 2017-04-13 12:37:47 -03:00 committed by GitHub
commit 2879b6ec75
1 changed files with 4 additions and 1 deletions

View File

@ -254,7 +254,10 @@ class WC_Structured_Data {
$markup['@id'] = get_comment_link( $comment->comment_ID );
$markup['datePublished'] = get_comment_date( 'c', $comment->comment_ID );
$markup['description'] = get_comment_text( $comment->comment_ID );
$markup['itemReviewed'] = array(
'@type' => 'Product',
'name' => get_the_title( $comment->post_ID ),
);
if ( $rating = get_comment_meta( $comment->comment_ID, 'rating', true ) ) {
$markup['reviewRating'] = array(
'@type' => 'rating',