Changeset 1954560
- Timestamp:
- 10/10/2018 01:15:42 PM (7 years ago)
- Location:
- tealium/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
tealium.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tealium/trunk/readme.txt
r1934840 r1954560 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.9.8 7 Stable tag: 2.1.1 07 Stable tag: 2.1.11 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 104 104 == Changelog == 105 105 106 = 2.1.11 = 107 * AMP bug fix. Workaround for a bug in a 3rd-party AMP plugin. 108 106 109 = 2.1.10 = 107 110 * Add support for alternative utag_data namespace. … … 183 186 == Upgrade Notice == 184 187 188 = 2.1.11 = 189 AMP bug fix. Workaround for a bug in a 3rd-party AMP plugin. 190 185 191 = 2.1.10 = 186 192 Add support for alternative utag_data namespace. -
tealium/trunk/tealium.php
r1934840 r1954560 4 4 Plugin URI: http://tealium.com 5 5 Description: Adds the Tealium tag and creates a data layer for your WordPress site. 6 Version: 2.1.1 06 Version: 2.1.11 7 7 Author: Ian Hampton - Tealium EMEA 8 8 Author URI: http://tealium.com … … 552 552 */ 553 553 function tealiumAMP() { 554 if ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) { 554 global $wp_query; 555 if ( function_exists( 'is_amp_endpoint' ) && $wp_query !== null && is_amp_endpoint() ) { 555 556 return true; 556 557 }
Note: See TracChangeset
for help on using the changeset viewer.