Version Description
(19 May 2020) =
- Fixed: Too few arguments to function saswp_yoast_homepage_meta_desc() #1017
Download this release
Release Info
Developer | magazine3 |
Plugin | Schema & Structured Data for WP & AMP |
Version | 1.9.37.1 |
Comparing to | |
See all releases |
Code changes from version 1.9.37 to 1.9.37.1
- admin_section/common-function.php +2 -2
- readme.txt +5 -1
- structured-data-for-wp.php +2 -2
admin_section/common-function.php
CHANGED
@@ -3180,9 +3180,9 @@ function saswp_update_global_post(){
|
|
3180 |
|
3181 |
}
|
3182 |
|
3183 |
-
add_filter('wpseo_metadesc', 'saswp_yoast_homepage_meta_desc',
|
3184 |
|
3185 |
-
function saswp_yoast_homepage_meta_desc($description, $peresentation){
|
3186 |
|
3187 |
global $saswp_yoast_home_meta;
|
3188 |
|
3180 |
|
3181 |
}
|
3182 |
|
3183 |
+
add_filter('wpseo_metadesc', 'saswp_yoast_homepage_meta_desc', 10,2);
|
3184 |
|
3185 |
+
function saswp_yoast_homepage_meta_desc($description, $peresentation = false){
|
3186 |
|
3187 |
global $saswp_yoast_home_meta;
|
3188 |
|
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.4
|
6 |
-
Stable tag: 1.9.37
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -120,6 +120,10 @@ You can contact us from [here](http://structured-data-for-wp.com/contact-us/)
|
|
120 |
|
121 |
== Changelog ==
|
122 |
|
|
|
|
|
|
|
|
|
123 |
= 1.9.37 (19 May 2020) =
|
124 |
|
125 |
* New : Stars Rating field in WordPress default comment form #844
|
3 |
Tags: Schema, Structured Data, Google Snippets, Rich Snippets, Schema.org, SEO, AMP
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.4
|
6 |
+
Stable tag: 1.9.37.1
|
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.37.1 (19 May 2020) =
|
124 |
+
|
125 |
+
* Fixed: Too few arguments to function saswp_yoast_homepage_meta_desc() #1017
|
126 |
+
|
127 |
= 1.9.37 (19 May 2020) =
|
128 |
|
129 |
* New : Stars Rating field in WordPress default comment form #844
|
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.37
|
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.37');
|
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.37.1
|
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.37.1');
|
17 |
define('SASWP_DIR_NAME_FILE', __FILE__ );
|
18 |
define('SASWP_DIR_NAME', dirname( __FILE__ ));
|
19 |
define('SASWP_DIR_URI', plugin_dir_url(__FILE__));
|