In February 2026, WordPress.com made it official: marketing teams can now build WordPress plugins using AI—no developer required. Claude Code and Cowork integrations mean you can go from plugin idea to working code in minutes, without writing a single line yourself. That’s a genuine breakthrough for the 43.5% of websites running on WordPress (W3Techs, 2024). But here’s what nobody is talking about: your AI-built plugin can capture events perfectly and still send them absolutely nowhere.
The tracking pipeline is missing. And that gap is costing you real conversion data, right now.
Why WordPress Teams Adopted GTM in the First Place
Cast your mind back to why most WordPress stores turned to Google Tag Manager. No developer on staff. No budget for engineering sprints. GTM promised a way to deploy tracking without touching code—marketing could manage tags independently.
It never quite worked out that way. GTM evolved into a specialist tool. GTM Server-Side arrived and made things dramatically more complex: container configs, cloud server provisioning, subdomain routing, template development. The original problem—no developer capacity—was never actually solved. GTM just deferred it to someone more expensive.
By 2023, a fully functional GTM server-side stack required either a specialist agency or a technical hire. The tool that promised to liberate marketers had become its own bottleneck.
Now, in 2026, AI has genuinely shifted the equation. A marketing manager can describe an event they want to capture in plain English and get a working WordPress plugin back. The developer dependency, for event capture at least, is lifted.
But lifting one constraint exposed the constraint beneath it.
The Wall Nobody Warned You About: GTM Cannot Use AI Either
Here’s the setup most people walk into: build a plugin with AI to shape your WooCommerce events, then use AI to write the GTM Server-Side tags to route them. Clean end-to-end workflow. Except it collapses at step two.
GTM Server-Side runs on a sandboxed JavaScript environment with custom APIs that are fundamentally different from standard JavaScript. Functions that work in every browser and every Node.js application simply do not exist in GTM’s execution context. AI models trained on web documentation—the vast majority of which covers standard JavaScript—cannot produce valid GTM server-side code. The environment is too niche, too closed, and too poorly represented in public training data.
GTM was adopted because there were no developers. AI fixed the developer problem for plugin creation. But GTM Server-Side is closed to AI too—and you’re back where you started.
Except now you’ve also paid for the GTM server infrastructure, spent time on container configuration, and discovered the hard way that your AI assistant is genuinely useless for the one part of the stack that matters most.
You may be interested in: Ad Blockers Are Hiding 31.5% of Your WooCommerce Visitors
What Happens to Your Events Without a Pipeline
When your AI-built WordPress plugin captures a WooCommerce purchase event, it needs somewhere to send it. Without a server-side pipeline, you’re left with options that are either lossy or broken:
Client-side JavaScript only: Your plugin triggers a GA4 or Facebook Pixel event in the browser. That event reaches the tracking script—if it loads. If the visitor uses an ad blocker (31.5% of global users, Statista 2024), the script never loads. The conversion disappears entirely from your reports.
Safari and Apple’s ITP: Apple’s Intelligent Tracking Prevention limits first-party cookies to 7 days. A visitor who researches your product today and buys next week looks like a brand new user. Attribution chains break. Your Facebook campaign takes zero credit for a sale it genuinely influenced.
Facebook Pixel post-iOS 14.5: Meta’s browser pixel is operating blind without server-side Conversions API support. Your plugin fires correctly on every purchase. The conversion data doesn’t reliably reach Meta’s optimization algorithm. ROAS figures become guesswork.
The result is a painful irony: the plugin works flawlessly. The data doesn’t arrive. The event capture was never the hard part. Routing events reliably, from a source that ad blockers cannot reach, in a format each platform accepts—that’s where the real architecture lives.
The Full-Circle View: What AI Actually Unlocked
Viewed across the arc of how WordPress tracking evolved, what happened in February 2026 is significant—but it’s the beginning of a complete solution, not the solution itself.
2012: GTM launches. Marketers without developer access finally have a way to deploy tags. Complex, but workable for client-side use cases.
2021–2023: GTM Server-Side arrives, then iOS 14.5, then GA4’s forced migration. Every change makes tracking harder and more developer-dependent. The complexity tax compounds.
February 2026: WordPress.com officially supports AI plugin development via Claude Code and Cowork. Non-technical marketers can describe an event and get a working plugin. The developer dependency for event capture is genuinely removed.
What AI gave you is the ability to shape data. It didn’t give you somewhere to send it.
That’s not a limitation of AI—it’s a clarification of what the real problem always was. The bottleneck was the pipeline architecture: a system that receives events from WordPress, validates and formats them, hashes PII correctly for each platform, and routes to every destination simultaneously. That infrastructure has to exist. AI cannot conjure it from a text prompt.
You may be interested in: Ad Blockers Are Hiding 31.5% of Your WooCommerce Visitors
The Architecture That Completes What AI Started
What WordPress stores actually need is not GTM. It’s a first-party server-side pipeline that WordPress can talk to directly—one that handles the routing GTM was supposed to handle, without GTM’s complexity or AI incompatibility.
The architecture that works looks like this:
- WordPress plugin (AI-built or standard) captures events from WooCommerce hooks and WordPress actions
- Events batch and send via authenticated API calls to a dedicated server running on your own subdomain (e.g., data.yourstore.com)
- The server validates, formats, enhances with server-side data, and hashes PII per each platform’s specifications
- Simultaneous routing sends enriched events to GA4, Facebook CAPI, Google Ads Enhanced Conversions, BigQuery, Klaviyo, and more
- First-party delivery from your own domain bypasses ad blockers entirely—because the request comes from your subdomain, not a third-party tracking domain
No GTM. No sandboxed JavaScript. No specialist tags. No AI-incompatible environment. Just a clean API from your WordPress plugin to a server you control, routing to every platform you use.
This is the architecture Transmute Engine™ delivers. A dedicated Node.js server running first-party on your subdomain, receiving events from the inPIPE WordPress plugin via API, formatting and routing them simultaneously to all your platforms—from a domain you own, bypassing ad blockers, with PII hashed to each platform’s requirements. AI builds the plugin. Transmute Engine provides the pipeline. Together, they replace GTM entirely.
Key Takeaways
- AI plugin development is real: WordPress.com’s February 2026 launch of Claude Code and Cowork means marketing teams can build working event-capture plugins without developers—but event capture is only half the stack
- GTM is closed to AI: GTM Server-Side’s sandboxed JavaScript environment cannot be written by AI tools, making the traditional stack a dead end for teams hoping to use AI end-to-end
- Client-side alone loses 20–40% of conversions: 31.5% of users run ad blockers (Statista, 2024) blocking client-side scripts; Safari’s 7-day ITP limit breaks return-visitor attribution for roughly one-third of web traffic
- The missing piece is the pipeline: A first-party Node.js server on your subdomain receives events via API, formats them per each platform’s spec, and routes simultaneously to GA4, Facebook CAPI, BigQuery, and more
- Together, AI plugin + first-party server = GTM replacement: The combination removes developer dependency, bypasses ad blockers, and puts data ownership back with the WordPress store owner
No. GTM Server-Side uses a sandboxed JavaScript environment with custom APIs that are fundamentally different from standard JavaScript. AI tools trained on publicly available web documentation cannot produce valid server-side tag code for GTM—the environment is too unique, too proprietary, and too poorly represented in AI training data.
Without a server-side pipeline, events either fire client-side—where ad blockers intercept 31.5% of them—or go nowhere useful. You need a dedicated server application running on your own subdomain to receive, format, and route events to GA4, Facebook CAPI, BigQuery, and other destinations reliably.
Client-side tracking fires JavaScript in the visitor’s browser, where ad blockers and Safari’s ITP can intercept or invalidate it. Server-side tracking captures data on your own server before it reaches the browser, bypassing blockers entirely. The data arrives complete regardless of what the visitor’s browser allows.
No. AI handles what previously required developer time for plugin creation. Transmute Engine is configured, not coded—there is no GTM container to maintain, no sandboxed JavaScript to write, and no specialist to hire. The architecture is built specifically to remove developer dependency for WordPress store owners.
No—they work together. The inPIPE WordPress plugin captures events from WooCommerce hooks and sends them via authenticated API to the Transmute Engine server. The plugin is the data courier; Transmute Engine is the processing and routing engine. Both are required, and both can coexist with AI-built custom plugins.
AI gave your marketing team the capability. Seresa.io provides the pipeline that makes it work.


