Version Description
- Bugfixes:
- Fixed underline setting that wasn't working.
- Added screenshots to plugin page.
Download this release
Release Info
Developer | joostdevalk |
Plugin | Glue for Yoast SEO & AMP |
Version | 0.3.2 |
Comparing to | |
See all releases |
Code changes from version 0.3.1 to 0.3.2
- classes/views/additional-css.php +1 -1
- readme.txt +12 -1
- yoastseo-amp.php +1 -1
classes/views/additional-css.php
CHANGED
@@ -3,5 +3,5 @@ text-align: left;
|
|
3 |
}
|
4 |
|
5 |
a, a:active, a:visited {
|
6 |
-
text-decoration: <?php echo ( ( $this->options['underline'] ) ? '
|
7 |
}
|
3 |
}
|
4 |
|
5 |
a, a:active, a:visited {
|
6 |
+
text-decoration: <?php echo ( ( 'underline' === $this->options['underline'] ) ? 'underline' : 'none' ); ?>;
|
7 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: joostdevalk
|
|
3 |
Tags: AMP, SEO
|
4 |
Requires at least: 4.2
|
5 |
Tested up to: 4.4
|
6 |
-
Stable tag: 0.3.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -22,8 +22,19 @@ To change your AMP page design, go to SEO -> AMP, and look at the design tab.
|
|
22 |
1. Go to SEO -> AMP to change your design and enable custom post types.
|
23 |
1. You're done.
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
== Changelog ==
|
26 |
|
|
|
|
|
|
|
|
|
|
|
27 |
= 0.3.1 =
|
28 |
* Bugfixes:
|
29 |
* Fixed bug where featured image wouldn't be used properly anymore.
|
3 |
Tags: AMP, SEO
|
4 |
Requires at least: 4.2
|
5 |
Tested up to: 4.4
|
6 |
+
Stable tag: 0.3.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
22 |
1. Go to SEO -> AMP to change your design and enable custom post types.
|
23 |
1. You're done.
|
24 |
|
25 |
+
== Screenshots ==
|
26 |
+
|
27 |
+
1. Example AMP page, design changed with this plugin.
|
28 |
+
2. Post type support in the plugin.
|
29 |
+
3. Design settings in the plugin.
|
30 |
+
|
31 |
== Changelog ==
|
32 |
|
33 |
+
= 0.3.2 =
|
34 |
+
* Bugfixes:
|
35 |
+
* Fixed underline setting that wasn't working.
|
36 |
+
* Added screenshots to plugin page.
|
37 |
+
|
38 |
= 0.3.1 =
|
39 |
* Bugfixes:
|
40 |
* Fixed bug where featured image wouldn't be used properly anymore.
|
yoastseo-amp.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
* Plugin Name: Glue for Yoast SEO & AMP
|
10 |
* Plugin URI: https://wordpress.org/plugins/glue-for-yoast-seo-amp/
|
11 |
* Description: Makes sure the default WordPress AMP plugin uses the proper Yoast SEO metadata
|
12 |
-
* Version: 0.3.
|
13 |
* Author: Joost de Valk
|
14 |
* Author URI: https://yoast.com
|
15 |
*/
|
9 |
* Plugin Name: Glue for Yoast SEO & AMP
|
10 |
* Plugin URI: https://wordpress.org/plugins/glue-for-yoast-seo-amp/
|
11 |
* Description: Makes sure the default WordPress AMP plugin uses the proper Yoast SEO metadata
|
12 |
+
* Version: 0.3.2
|
13 |
* Author: Joost de Valk
|
14 |
* Author URI: https://yoast.com
|
15 |
*/
|