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 |