diff --git a/README.md b/README.md index c00af85..46b7275 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,9 @@ Review, Event, People, Product, Recipe, Software Application, Video, Articles et ## Changelog ## +### 1.6.11.1 ### +- Fixed: Product image schema error in Product schema. + ### 1.6.11 ### - Fixed: Improved code quality syntax and security checks for better coding standards and practices. - Fixed: Recipe - Author type fix. diff --git a/functions.php b/functions.php index 59c865d..352b2d2 100644 --- a/functions.php +++ b/functions.php @@ -621,6 +621,11 @@ function display_rich_snippet( $content ) { $product .= '' . average_rating() . ''; $product .= ' based on ' . rating_count() . ' votes
'; + $product .= '
'; + $product .= ''; + $product .= ''; + $product .= '
'; + if ( '' != trim( $product_brand ) ) { if ( '' != $args_product['product_brand'] ) { $product .= '
' . esc_attr( stripslashes( $args_product['product_brand'] ) ) . '
'; diff --git a/readme.txt b/readme.txt index 856fea6..e84d695 100644 --- a/readme.txt +++ b/readme.txt @@ -80,6 +80,9 @@ Review, Event, People, Product, Recipe, Software Application, Video, Articles et == Changelog == += 1.6.11.1 = +- Fixed: Product image schema error in Product schema. + = 1.6.11 = - Fixed: Improved code quality syntax and security checks for better coding standards and practices. - Fixed: Recipe - Author type fix.