AMP for WP – Accelerated Mobile Pages - Version 0.9.96.1

Version Description

(21st June 2018) = * Fixed: Pagination on Homepage and Archive pages not working for some cases.

Download this release

Release Info

Developer mohammed_kaludi
Plugin Icon 128x128 AMP for WP – Accelerated Mobile Pages
Version 0.9.96.1
Comparing to
See all releases

Code changes from version 0.9.96 to 0.9.96.1

README.md CHANGED
@@ -4,7 +4,7 @@ Tags: AMP, accelerated mobile pages, mobile, amp project, google amp, amp wp, go
4
  Donate link: https://www.paypal.me/Kaludi/25
5
  Requires at least: 3.0
6
  Tested up to: 4.9.5
7
- Stable tag: 0.9.96
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -183,6 +183,9 @@ You can contact us from [here](https://ampforwp.com/contact/)
183
 
184
  == Changelog ==
185
 
 
 
 
186
  = 0.9.96 (2nd June 2018) =
187
  * Added: Fully GDPR Compliance
188
  * Fixed: GTM not working
4
  Donate link: https://www.paypal.me/Kaludi/25
5
  Requires at least: 3.0
6
  Tested up to: 4.9.5
7
+ Stable tag: 0.9.96.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
183
 
184
  == Changelog ==
185
 
186
+ = 0.9.96.1 (21st June 2018) =
187
+ * Fixed: Pagination on Homepage and Archive pages not working for some cases.
188
+
189
  = 0.9.96 (2nd June 2018) =
190
  * Added: Fully GDPR Compliance
191
  * Fixed: GTM not working
accelerated-moblie-pages.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Accelerated Mobile Pages
4
  Plugin URI: https://wordpress.org/plugins/accelerated-mobile-pages/
5
  Description: AMP for WP - Accelerated Mobile Pages for WordPress
6
- Version: 0.9.96
7
  Author: Ahmed Kaludi, Mohammed Kaludi
8
  Author URI: https://ampforwp.com/
9
  Donate link: https://www.paypal.me/Kaludi/25
@@ -19,7 +19,7 @@ define('AMPFORWP_PLUGIN_DIR_URI', plugin_dir_url(__FILE__));
19
  define('AMPFORWP_DISQUS_URL',plugin_dir_url(__FILE__).'includes/disqus.html');
20
  define('AMPFORWP_IMAGE_DIR',plugin_dir_url(__FILE__).'images');
21
  define('AMPFORWP_MAIN_PLUGIN_DIR', plugin_dir_path( __DIR__ ) );
22
- define('AMPFORWP_VERSION','0.9.96');
23
 
24
  // any changes to AMP_QUERY_VAR should be refelected here
25
  function ampforwp_generate_endpoint(){
@@ -219,7 +219,7 @@ function ampforwp_add_custom_rewrite_rules() {
219
  }
220
  }
221
  }
222
- add_action( 'admin_init', 'ampforwp_add_custom_rewrite_rules' );
223
 
224
  register_activation_hook( __FILE__, 'ampforwp_rewrite_activation', 20 );
225
  function ampforwp_rewrite_activation() {
3
  Plugin Name: Accelerated Mobile Pages
4
  Plugin URI: https://wordpress.org/plugins/accelerated-mobile-pages/
5
  Description: AMP for WP - Accelerated Mobile Pages for WordPress
6
+ Version: 0.9.96.1
7
  Author: Ahmed Kaludi, Mohammed Kaludi
8
  Author URI: https://ampforwp.com/
9
  Donate link: https://www.paypal.me/Kaludi/25
19
  define('AMPFORWP_DISQUS_URL',plugin_dir_url(__FILE__).'includes/disqus.html');
20
  define('AMPFORWP_IMAGE_DIR',plugin_dir_url(__FILE__).'images');
21
  define('AMPFORWP_MAIN_PLUGIN_DIR', plugin_dir_path( __DIR__ ) );
22
+ define('AMPFORWP_VERSION','0.9.96.1');
23
 
24
  // any changes to AMP_QUERY_VAR should be refelected here
25
  function ampforwp_generate_endpoint(){
219
  }
220
  }
221
  }
222
+ add_action( 'init', 'ampforwp_add_custom_rewrite_rules' );
223
 
224
  register_activation_hook( __FILE__, 'ampforwp_rewrite_activation', 20 );
225
  function ampforwp_rewrite_activation() {
includes/amp-consent/consent.php DELETED
@@ -1,3 +0,0 @@
1
- <?php
2
- echo '{"promptIfUnknown": true}' ;
3
- ?>
 
 
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: AMP, accelerated mobile pages, mobile, amp project, google amp, amp wp, go
4
  Donate link: https://www.paypal.me/Kaludi/25
5
  Requires at least: 3.0
6
  Tested up to: 4.9.5
7
- Stable tag: 0.9.96
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -183,6 +183,9 @@ You can contact us from [here](https://ampforwp.com/contact/)
183
 
184
  == Changelog ==
185
 
 
 
 
186
  = 0.9.96 (2nd June 2018) =
187
  * Added: Fully GDPR Compliance
188
  * Fixed: GTM not working
4
  Donate link: https://www.paypal.me/Kaludi/25
5
  Requires at least: 3.0
6
  Tested up to: 4.9.5
7
+ Stable tag: 0.9.96.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
183
 
184
  == Changelog ==
185
 
186
+ = 0.9.96.1 (21st June 2018) =
187
+ * Fixed: Pagination on Homepage and Archive pages not working for some cases.
188
+
189
  = 0.9.96 (2nd June 2018) =
190
  * Added: Fully GDPR Compliance
191
  * Fixed: GTM not working