commit
9cb6549ea7
|
@ -248,14 +248,18 @@ 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,
|
||||
);
|
||||
|
||||
// Skip replies unless they have a rating.
|
||||
} elseif ( $comment->comment_parent ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$markup['author'] = array(
|
||||
'@type' => 'Person',
|
||||
'name' => get_comment_author( $comment->comment_ID ),
|
||||
|
|
Loading…
Reference in New Issue