Only show reviewRating when rating is set.

This commit is contained in:
Mike Jolley 2017-02-24 12:32:39 +00:00
parent eca9828d66
commit 0de73ee4f9
1 changed files with 8 additions and 8 deletions

View File

@ -248,14 +248,14 @@ 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 ),
);
$markup['reviewRating'] = array(
'@type' => 'rating',
'ratingValue' => get_comment_meta( $comment->comment_ID, 'rating', true ),
);
if ( $rating = get_comment_meta( $comment->comment_ID, 'rating', true ) ) {
$markup['reviewRating'] = array(
'@type' => 'rating',
'ratingValue' => $rating,
);
}
$markup['author'] = array(
'@type' => 'Person',
'name' => get_comment_author( $comment->comment_ID ),