Version Description
(15 Dec 2021) =
- Added: Combine product reviews and reviews added from collection and show in rich results. #1584
Download this release
Release Info
Developer | magazine3 |
Plugin | Schema & Structured Data for WP & AMP |
Version | 1.9.92 |
Comparing to | |
See all releases |
Code changes from version 1.9.91 to 1.9.92
- output/service.php +2 -3
- readme.txt +6 -1
- structured-data-for-wp.php +2 -2
output/service.php
CHANGED
@@ -4591,10 +4591,9 @@ Class saswp_output_service{
|
|
4591 |
|
4592 |
}
|
4593 |
|
4594 |
-
return $product_details;
|
4595 |
}
|
4596 |
-
|
4597 |
-
|
4598 |
public function saswp_rating_box_rating_markup($post_id){
|
4599 |
|
4600 |
global $sd_data;
|
4591 |
|
4592 |
}
|
4593 |
|
4594 |
+
return apply_filters( 'saswp_modify_product_markup_in_service', $product_details );
|
4595 |
}
|
4596 |
+
|
|
|
4597 |
public function saswp_rating_box_rating_markup($post_id){
|
4598 |
|
4599 |
global $sd_data;
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: magazine3
|
|
3 |
Tags: Schema, Structured Data, Google Snippets, Rich Snippets, Schema.org, SEO, AMP
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.8
|
6 |
-
Stable tag: 1.9.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -120,6 +120,11 @@ You can contact us from [here](http://structured-data-for-wp.com/contact-us/)
|
|
120 |
|
121 |
== Changelog ==
|
122 |
|
|
|
|
|
|
|
|
|
|
|
123 |
= 1.9.91 (06 Dec 2021) =
|
124 |
|
125 |
* Added: worstRating property to review schema #1564
|
3 |
Tags: Schema, Structured Data, Google Snippets, Rich Snippets, Schema.org, SEO, AMP
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.8
|
6 |
+
Stable tag: 1.9.92
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
120 |
|
121 |
== Changelog ==
|
122 |
|
123 |
+
= 1.9.92 (15 Dec 2021) =
|
124 |
+
|
125 |
+
* Added: Combine product reviews and reviews added from collection and show in rich results. #1584
|
126 |
+
|
127 |
+
|
128 |
= 1.9.91 (06 Dec 2021) =
|
129 |
|
130 |
* Added: worstRating property to review schema #1564
|
structured-data-for-wp.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Schema & Structured Data for WP & AMP
|
4 |
Description: Schema & Structured Data adds Google Rich Snippets markup according to Schema.org guidelines to structure your site for SEO. (AMP Compatible)
|
5 |
-
Version: 1.9.
|
6 |
Text Domain: schema-and-structured-data-for-wp
|
7 |
Domain Path: /languages
|
8 |
Author: Magazine3
|
@@ -13,7 +13,7 @@ License: GPL2
|
|
13 |
// Exit if accessed directly.
|
14 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
15 |
|
16 |
-
define('SASWP_VERSION', '1.9.
|
17 |
define('SASWP_DIR_NAME_FILE', __FILE__ );
|
18 |
define('SASWP_DIR_NAME', dirname( __FILE__ ));
|
19 |
define('SASWP_DIR_URI', plugin_dir_url(__FILE__));
|
2 |
/*
|
3 |
Plugin Name: Schema & Structured Data for WP & AMP
|
4 |
Description: Schema & Structured Data adds Google Rich Snippets markup according to Schema.org guidelines to structure your site for SEO. (AMP Compatible)
|
5 |
+
Version: 1.9.92
|
6 |
Text Domain: schema-and-structured-data-for-wp
|
7 |
Domain Path: /languages
|
8 |
Author: Magazine3
|
13 |
// Exit if accessed directly.
|
14 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
15 |
|
16 |
+
define('SASWP_VERSION', '1.9.92');
|
17 |
define('SASWP_DIR_NAME_FILE', __FILE__ );
|
18 |
define('SASWP_DIR_NAME', dirname( __FILE__ ));
|
19 |
define('SASWP_DIR_URI', plugin_dir_url(__FILE__));
|