v1.0.10
This commit is contained in:
parent
7d9cb13d4d
commit
056776e798
3 changed files with 864 additions and 503 deletions
1253
noindex-seo.php
1253
noindex-seo.php
File diff suppressed because it is too large
Load diff
|
|
@ -3,9 +3,9 @@ Contributors: javiercasares
|
|||
Tags: seo, noindex
|
||||
Requires at least: 5.2
|
||||
Tested: 6.3
|
||||
Requires PHP: 7.0
|
||||
Requires PHP: 5.6
|
||||
Tested PHP: 8.3
|
||||
Stable tag: 1.0.9
|
||||
Stable tag: 1.0.10
|
||||
License: EUPL 1.2
|
||||
License URI: https://eupl.eu/1.2/en/
|
||||
|
||||
|
|
@ -77,6 +77,11 @@ Important note: if you have any doubt about any of the following items it is bes
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.10 =
|
||||
* 2023-09-10
|
||||
* WordPress Coding Standards 3.0.0 compatible.
|
||||
* Compatibility: PHP 5.6 - PHP 8.3.
|
||||
|
||||
= 1.0.9 =
|
||||
* 2023-07-28
|
||||
* Improved functions checking.
|
||||
|
|
|
|||
|
|
@ -1,30 +1,29 @@
|
|||
<?php
|
||||
if ( defined( 'ABSPATH' ) && defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
||||
delete_option( 'noindex_seo_error' );
|
||||
delete_option( 'noindex_seo_archive' );
|
||||
delete_option( 'noindex_seo_attachment' );
|
||||
delete_option( 'noindex_seo_author' );
|
||||
delete_option( 'noindex_seo_category' );
|
||||
delete_option( 'noindex_seo_comment_feed' );
|
||||
delete_option( 'noindex_seo_customize_preview' );
|
||||
delete_option( 'noindex_seo_date' );
|
||||
delete_option( 'noindex_seo_day' );
|
||||
delete_option( 'noindex_seo_feed' );
|
||||
delete_option( 'noindex_seo_front_page' );
|
||||
delete_option( 'noindex_seo_home' );
|
||||
delete_option( 'noindex_seo_month' );
|
||||
delete_option( 'noindex_seo_page' );
|
||||
delete_option( 'noindex_seo_paged' );
|
||||
delete_option( 'noindex_seo_post_type_archive' );
|
||||
delete_option( 'noindex_seo_preview' );
|
||||
delete_option( 'noindex_seo_privacy_policy' );
|
||||
delete_option( 'noindex_seo_robots' );
|
||||
delete_option( 'noindex_seo_search' );
|
||||
delete_option( 'noindex_seo_single' );
|
||||
delete_option( 'noindex_seo_singular' );
|
||||
delete_option( 'noindex_seo_tag' );
|
||||
delete_option( 'noindex_seo_tax' );
|
||||
delete_option( 'noindex_seo_time' );
|
||||
delete_option( 'noindex_seo_year' );
|
||||
delete_option( 'noindex_seo_error' );
|
||||
delete_option( 'noindex_seo_archive' );
|
||||
delete_option( 'noindex_seo_attachment' );
|
||||
delete_option( 'noindex_seo_author' );
|
||||
delete_option( 'noindex_seo_category' );
|
||||
delete_option( 'noindex_seo_comment_feed' );
|
||||
delete_option( 'noindex_seo_customize_preview' );
|
||||
delete_option( 'noindex_seo_date' );
|
||||
delete_option( 'noindex_seo_day' );
|
||||
delete_option( 'noindex_seo_feed' );
|
||||
delete_option( 'noindex_seo_front_page' );
|
||||
delete_option( 'noindex_seo_home' );
|
||||
delete_option( 'noindex_seo_month' );
|
||||
delete_option( 'noindex_seo_page' );
|
||||
delete_option( 'noindex_seo_paged' );
|
||||
delete_option( 'noindex_seo_post_type_archive' );
|
||||
delete_option( 'noindex_seo_preview' );
|
||||
delete_option( 'noindex_seo_privacy_policy' );
|
||||
delete_option( 'noindex_seo_robots' );
|
||||
delete_option( 'noindex_seo_search' );
|
||||
delete_option( 'noindex_seo_single' );
|
||||
delete_option( 'noindex_seo_singular' );
|
||||
delete_option( 'noindex_seo_tag' );
|
||||
delete_option( 'noindex_seo_tax' );
|
||||
delete_option( 'noindex_seo_time' );
|
||||
delete_option( 'noindex_seo_year' );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue