Version Description
- Added support for Yoast SEO Premium
Download this release
Release Info
Developer | lowest |
Plugin | Remove Yoast SEO Comments |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.0.1
- readme.txt +8 -5
- remove-yoast-seo-comments.php +2 -2
readme.txt
CHANGED
@@ -4,17 +4,17 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: yoast seo, yoast, seo, remove comments, remove html, remove ads, remove debug code
|
5 |
Requires at least: 1.2.0
|
6 |
Stable tag: 1.2.0
|
7 |
-
Tested up to: 4.
|
8 |
|
9 |
-
Removes all the Yoast SEO comments from your front-end source code.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
|
14 |
|
15 |
-
|
16 |
|
17 |
-
Note: This plugin requires [Yoast SEO](http://wordpress.org/plugins/wordpress-seo/). If you do not have Yoast SEO
|
18 |
|
19 |
== Installation ==
|
20 |
|
@@ -24,5 +24,8 @@ Note: This plugin requires [Yoast SEO](http://wordpress.org/plugins/wordpress-se
|
|
24 |
|
25 |
== Changelog ==
|
26 |
|
|
|
|
|
|
|
27 |
= 1.0 =
|
28 |
* Initial release
|
4 |
Tags: yoast seo, yoast, seo, remove comments, remove html, remove ads, remove debug code
|
5 |
Requires at least: 1.2.0
|
6 |
Stable tag: 1.2.0
|
7 |
+
Tested up to: 4.6
|
8 |
|
9 |
+
Removes all the Yoast SEO HTML comments from your front-end source code.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
This plugin will remove all HTML comments coming from the Yoast SEO plugin.
|
14 |
|
15 |
+
No more advertisements in your front-end source code!
|
16 |
|
17 |
+
*Note: This plugin requires [Yoast SEO](http://wordpress.org/plugins/wordpress-seo/) or Yoast SEO Premium. If you do not have Yoast SEO nor Yoast SEO Premium act,mnivated, this plugin will not work.*
|
18 |
|
19 |
== Installation ==
|
20 |
|
24 |
|
25 |
== Changelog ==
|
26 |
|
27 |
+
= 1.0.1 =
|
28 |
+
* Added support for Yoast SEO Premium
|
29 |
+
|
30 |
= 1.0 =
|
31 |
* Initial release
|
remove-yoast-seo-comments.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Remove Yoast SEO comments
|
4 |
* Plugin URI: https://wordpress.org/plugins/remove-yoast-seo-comments/
|
5 |
* Description: Removes all the Yoast SEO comments from your front-end source code.
|
6 |
-
* Version: 1.0
|
7 |
* Author: Mitch
|
8 |
* Author URI: https://profiles.wordpress.org/lowest
|
9 |
* License: GPL-2.0+
|
@@ -20,7 +20,7 @@ require_once( dirname( RYSC_FILE ) . '/functions.php' );
|
|
20 |
|
21 |
// Check if Yoast SEO is active. If so, then proceed.
|
22 |
// If not, show a error and deactivate RYSC.
|
23 |
-
if ( rysc_active( 'wordpress-seo/wp-seo.php' ) ) {
|
24 |
rysc_do();
|
25 |
} else {
|
26 |
rysc_noyoast();
|
3 |
* Plugin Name: Remove Yoast SEO comments
|
4 |
* Plugin URI: https://wordpress.org/plugins/remove-yoast-seo-comments/
|
5 |
* Description: Removes all the Yoast SEO comments from your front-end source code.
|
6 |
+
* Version: 1.0.1
|
7 |
* Author: Mitch
|
8 |
* Author URI: https://profiles.wordpress.org/lowest
|
9 |
* License: GPL-2.0+
|
20 |
|
21 |
// Check if Yoast SEO is active. If so, then proceed.
|
22 |
// If not, show a error and deactivate RYSC.
|
23 |
+
if ( rysc_active( 'wordpress-seo/wp-seo.php' ) || rysc_active( 'wordpress-seo-premium/wp-seo-premium.php' ) ) {
|
24 |
rysc_do();
|
25 |
} else {
|
26 |
rysc_noyoast();
|