Changeset 1572393 for add-to-any
- Timestamp:
- 01/11/2017 10:48:35 AM (17 months ago)
- Location:
- add-to-any/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
add-to-any.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
add-to-any/trunk/README.txt
r1572269 r1572393 4 4 Requires at least: 3.7 5 5 Tested up to: 4.7 6 Stable tag: 1.7. 56 Stable tag: 1.7.6 7 7 8 8 Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too. … … 334 334 335 335 == Changelog == 336 337 = 1.7.6 = 338 * Skip background colors on AMP for [out-of-date PHP versions](https://secure.php.net/eol.php) below PHP 5.3 336 339 337 340 = 1.7.5 = -
add-to-any/trunk/add-to-any.php
r1572269 r1572393 4 4 Plugin URI: https://www.addtoany.com/ 5 5 Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more. 6 Version: 1.7. 56 Version: 1.7.6 7 7 Author: AddToAny 8 8 Author URI: https://www.addtoany.com/ … … 352 352 $ind_html .= $html_container_close; 353 353 354 if ( $is_amp ) {354 if ( $is_amp && version_compare( PHP_VERSION, '5.3.0', '>=' ) ) { 355 355 add_action( 'amp_post_template_css', function( $amp_template ) use ( $amp_css ) { echo $amp_css; } ); 356 356 } … … 484 484 $button_html .= $html_wrap_close . $html_container_close; 485 485 486 if ( $is_amp ) {486 if ( $is_amp && version_compare( PHP_VERSION, '5.3.0', '>=' ) ) { 487 487 add_action( 'amp_post_template_css', function( $amp_template ) use ( $amp_css ) { echo $amp_css; } ); 488 488 }
Note: See TracChangeset
for help on using the changeset viewer.