PluginProbe
PhastPress / 1.82
PhastPress v1.82
3.12 3.11 1.75 1.76 1.77 1.78 1.79 1.80 1.81 1.82 1.83 1.84 1.85 1.86 1.87 1.88 1.89 1.90 1.91 1.92 1.93 1.94 1.95 1.96 1.97 All 119 releases
phastpress / classes / Compat / GAGoogleAnalytics.php

GAGoogleAnalytics.php in PhastPress 1.82, at classes/Compat/GAGoogleAnalytics.php

16 lines 446 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Kibo\PhastPlugins\PhastPress\Compat;
3
4 class GAGoogleAnalytics {
5 public function setup() {
6 // Don't delay GA Google Analytics script.
7 add_filter('ga_google_analytics_script_atts_ext', function ($atts) {
8 return $atts . ' data-phast-no-defer';
9 });
10
11 add_filter('ga_google_analytics_script_atts', function ($atts) {
12 return $atts . ' data-phast-no-defer';
13 });
14 }
15 }
16