Analytics: add 'Blog Card Click' custom Plausible event to blog cards — fires on click with post ID and area as props

This commit is contained in:
Oliver
2026-06-11 06:12:15 -03:00
parent 1439331736
commit a9cc8be6c4
+5 -1
View File
@@ -4271,7 +4271,11 @@
return ( return (
'<a href="' + '<a href="' +
p.link + p.link +
'" class="blog-card" style="text-decoration:none">' + '" class="blog-card" style="text-decoration:none" onclick="plausible(\'Blog Card Click\',{props:{post:\'' +
p.id.replace(/'/g, "\\'") +
'\',area:\'' +
p.area.replace(/'/g, "\\'") +
"'}})'>"
'<span style="display:flex;gap:6px;flex-wrap:wrap;align-self:flex-start">' + '<span style="display:flex;gap:6px;flex-wrap:wrap;align-self:flex-start">' +
'<span class="blog-card-area ' + '<span class="blog-card-area ' +
blogAreaClass(p.area) + blogAreaClass(p.area) +