PluginProbe ʕ •ᴥ•ʔ
Complianz – GDPR/CCPA Cookie Consent / 7.4.4
Complianz – GDPR/CCPA Cookie Consent v7.4.4
7.4.7 7.4.6 trunk 6.5.6 7.0.4 7.0.5 7.1.0 7.1.4 7.1.5 7.2.0 7.3.0 7.3.1 7.4.0 7.4.0.1 7.4.1 7.4.2 7.4.3 7.4.4 7.4.4.1 7.4.4.2 7.4.5 beta
complianz-gdpr / integrations / statistics / matomo.php
complianz-gdpr / integrations / statistics Last commit date
google-analytics.php 2 years ago index.php 2 years ago matomo.php 7 months ago
matomo.php
17 lines
1 <?php
2 defined('ABSPATH') or die("you do not have access to this page!");
3
4 add_filter( 'cmplz_known_script_tags', 'cmplz_matomo_script' );
5 function cmplz_matomo_script( $tags ) {
6 $tags[] = array(
7 'name' => 'matomo',
8 'category' => 'statistics',
9 'urls' => array(
10 'matomo.js',
11 'piwik.js',
12 ),
13 );
14
15 return $tags;
16 }
17