Plugin Directory

Changeset 2273017


Ignore:
Timestamp:
04/01/2020 02:38:13 PM (6 years ago)
Author:
deano1987
Message:

2.1.0

Location:
amp-toolbox
Files:
16 added
2 edited

Legend:

Unmodified
Added
Removed
  • amp-toolbox/trunk/amp-toolbox.php

    r2173725 r2273017  
    44Plugin URI:
    55Description: This is a plugin that extends and fixes functionality from the AMP plugin, allowing you a better control of your AMP pages.
    6 Version: 2.0.0
     6Version: 2.0.1
    77Author: deano1987
    88Author URI: http://deano.me
     
    620620}
    621621
     622//remove generator tags from wordpress Amp
     623add_action( 'amp_post_template_head', 'amptoolbox_remove_amp_generator_meta_tag', 2 );
     624function amptoolbox_remove_amp_generator_meta_tag() {
     625    remove_action( 'amp_post_template_head', 'amp_add_generator_metadata' );
     626    remove_action('amp_post_template_head', 'wp_generator');
     627}
     628
    622629?>
  • amp-toolbox/trunk/readme.txt

    r2173725 r2273017  
    33Tags: amp, amp schema, amp header, amp link, amp original, schema, header, header logo, link
    44Requires at least: 3.0
    5 Tested up to: 5.2.4
    6 Stable tag: 2.0.0
     5Tested up to: 5.4
     6Stable tag: 2.1.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535
    3636== Changelog ==
     37= 2.1.0 =
     38* plugin now automatically removes the wordpress and AMP generator meta tags from amp pages. see https://webdesires.co.uk/knowledge-base/wordpress-remove-generator-meta-tags-for-amp-plugin/
     39
    3740= 2.0.0 =
    3841* removed amphtml tag looks like the amp plugin now does this!
Note: See TracChangeset for help on using the changeset viewer.