Plugin Directory

Changeset 2362095


Ignore:
Timestamp:
08/15/2020 09:12:07 PM (6 years ago)
Author:
timvaniersel
Message:

add Yoast SEO Premium Support

Location:
remove-schema/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • remove-schema/trunk/README.txt

    r2353962 r2362095  
    5353== Changelog ==
    5454
     55= 1.4 =
     56* Add Yoast SEO Premium support
     57
    5558= 1.3.4 =
    5659* Add multisite support
  • remove-schema/trunk/admin/partials/remove-schema-admin-display.php

    r2353962 r2362095  
    6767
    6868          <!-- remove Yoast JSONLD -->
    69           <?php if ( pluginnl_plugin_is_active( 'wordpress-seo/wp-seo.php' ) ) { ?>
     69          <?php if (pluginnl_plugin_is_active( 'wordpress-seo/wp-seo.php') || pluginnl_plugin_is_active('wordpress-seo-premium/wp-seo-premium.php') ) { ?>
    7070          <fieldset>
    7171            <legend class="screen-reader-text"><span><?php _e('Remove Yoast JSON-LD', $this->plugin_name); ?></span></legend>
  • remove-schema/trunk/admin/partials/remove-schema-post-editor-display.php

    r2353962 r2362095  
    6161<?php esc_attr_e('Remove all JSON-LD', $this->plugin_name); ?></br>
    6262
    63 <?php if ( pluginnl_plugin_is_active( 'wordpress-seo/wp-seo.php' ) ) { ?>
     63<?php if (pluginnl_plugin_is_active( 'wordpress-seo/wp-seo.php') || pluginnl_plugin_is_active('wordpress-seo-premium/wp-seo-premium.php') ) { ?>
    6464<input type="checkbox" id="<?php echo $this->plugin_name; ?>-yoast-json-ld" name="<?php echo $this->plugin_name; ?>[yoast_jsonld]" value="1" <?php checked($yoast_jsonld, 1); ?> />
    6565<?php esc_attr_e('Remove Yoast JSON-LD', $this->plugin_name); ?></br>
  • remove-schema/trunk/remove-schema.php

    r2353962 r2362095  
    1717 * Plugin URI:        https://plugin.nl/en/remove-schema-plugin/
    1818 * Description:       Remove all Microdata, RDFa and/or JSON-ld that you don’t want on your page.
    19  * Version:           1.3.4
     19 * Version:           1.4
    2020 * Author:            Plugin.nl
    2121 * Author URI:        https://plugin.nl/en/remove-schema-plugin/
     
    3434 * Currently plugin version.
    3535 */
    36 define( 'REMOVE_SCHEMA_VERSION', '1.3.4' );
     36define( 'REMOVE_SCHEMA_VERSION', '1.4' );
    3737
    3838/**
Note: See TracChangeset for help on using the changeset viewer.