Changeset 1817844
- Timestamp:
- 02/08/2018 05:18:20 AM (8 years ago)
- Location:
- setup-adsense-for-amp/trunk
- Files:
-
- 3 edited
-
adsense-for-amp.php (modified) (1 diff)
-
includes/adsense.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
setup-adsense-for-amp/trunk/adsense-for-amp.php
r1798866 r1817844 5 5 Plugin URI: https://creativebrains.co.in 6 6 Description: Setup Google Adsense on AMP pages 7 Version: 2.0. 07 Version: 2.0.1 8 8 Author: Creative Brains 9 9 */ -
setup-adsense-for-amp/trunk/includes/adsense.php
r1732573 r1817844 13 13 function adsense_for_amp_above_the_content($content) { 14 14 15 if (empty(get_option('afa-above-the-content-ad-type'))) { 15 $afa_above_the_content_ad_type_option = get_option('afa-above-the-content-ad-type'); 16 17 if (empty($afa_above_the_content_ad_type_option)) { 16 18 return $content; 17 19 } … … 52 54 function adsense_for_amp_below_the_content($content) { 53 55 54 if (empty(get_option('afa-below-the-content-ad-type'))) { 56 57 $afa_below_the_content_ad_type_option = get_option('afa-below-the-content-ad-type'); 58 if (empty($afa_below_the_content_ad_type_option)) { 55 59 return $content; 56 60 } -
setup-adsense-for-amp/trunk/readme.txt
r1798866 r1817844 5 5 Tags: google adsense, AMP, Accelerated Mobile Pages 6 6 Contributors: adsenseforamp 7 Version: 2.0. 08 Tested up to: 4.9 7 Version: 2.0.1 8 Tested up to: 4.9.4 9 9 Author: Creative Brains 10 10 License: GPLv2 or later … … 92 92 == Changelog == 93 93 94 = 2.0.1 = 95 * bug fixes 96 * tested for wordpress 4.9.4 97 94 98 = 2.0.0 = 95 99 * Bug fixes
Note: See TracChangeset
for help on using the changeset viewer.