This adds your Microsoft Clarity Analytics ID to the head of your public-facing WordPress pages (not your admin pages) and only for users who aren’t logged-in.
Replace the XXXXXXXXX
with your ID and you’re good to go.
By default, it assumes you want to add the script. However, if you’re using my Env555 script, it will also attempt to only add the analytics tag to Production environments, so that you’re not collecting data from any local, development, or staging sites.
<?php
/* Uses Env555, if available */
namespace vkZD2cxj;
\add_action( 'wp_head', function () {
$msID = "XXXXXXXXXXXX";
$addCode = true;
if (function_exists('\Env555\this_is_a_production_site')) {
// only on production for logged out users
$addCode = (\Env555\this_is_a_production_site() && !\is_user_logged_in());
}
if ($addCode === true) {
?>
<!-- Analytics: Microsoft Clarity in wp_head on Production -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "<?php echo $msID; ?>");
</script>
<?php } }, 1000 );
Leave a Reply