# phastpress/1.97/classes/Compat/GoogleSiteKit.php

PhastPress, version 1.97. 12 lines.

- Page: https://pluginprobe.com/plugins/phastpress/1.97/code/classes/Compat/GoogleSiteKit.php
- Raw: https://pluginprobe.com/plugins/phastpress/1.97/raw/classes/Compat/GoogleSiteKit.php
- Modified: 2020-09-21T11:38:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/phastpress/1.97/code/classes/Compat/GoogleSiteKit.php#L10-L20`.

```php
<?php
namespace Kibo\PhastPlugins\PhastPress\Compat;

class GoogleSiteKit {
    public function setup() {
        // Don't delay Google Site Kit Analytics.
        add_filter('wp_print_scripts', function () {
            wp_scripts()->add_data('google_gtagjs', 'phast_no_defer', true);
        });
    }
}

```
