Code-Snippets-Functions/Execute a function on a child site/SEOPress/disable-all-tracking-cookies-matomo-feature.txt

5 lines
182 B
Text

function sp_matomo_disable_cookies($html) {
$html = "_paq.push(['disableCookies']);\n";
return $html;
}
add_filter('seopress_matomo_disable_cookies', 'sp_matomo_disable_cookies');