Fourteen years on this platform buys you a healthy suspicion of the phrase “paradigm shift”, which usually turns out to be a CSS refresh. The latest WordPress.com changelog is not that. WordPress AI agents now run through the Model Context Protocol, which hands an LLM real agency over your database and file structure across a standardized bridge, rather than another plugin that writes intro paragraphs.
How WordPress AI agents work over MCP
MCP lets a tool like Claude or ChatGPT treat your WordPress site as a server that exposes a set of callable tools. The copying and pasting step disappears. WordPress AI agents can draft posts, walk the media library fixing alt text, or edit the About page, all through direct read and write access.
For agentic workflows this is a real step. I have watched clients grind through content migrations and tag audits for years. Now you can point Cursor or Claude at the site and say, “Find every image missing alt text and fix it based on the surrounding content,” and the busywork goes to the machine.
Before switching any of it on, read the permissions layer carefully, because you are granting an AI the ability to hit your REST API endpoints. My guide on testing AI connector plugins covers how to prepare for that.
Newsletter sending finally has a default
Everyone has done this once: you rush out a technical update, forget to uncheck “Email to subscribers”, and 5,000 people get a notification for a post that was never meant for their inbox. WordPress.com has finally addressed it with a site-wide default under Jetpack → Newsletter.
Set the default to off and turn email delivery on per post when you actually want it. It is a small change in the UI, and on a high-volume site it stops you from spamming the people who like your blog most.
Command palette and button states in the editor
The Site Editor keeps collecting small speed wins, and not only in PHP execution time. ⌘K (or Ctrl+K) in the admin bar now opens the Command Palette, which takes most of the clicking out of navigation. There is also a dedicated screen in the Styles panel for button states: hover, focus and active.
Until now that meant writing custom CSS or hoping the theme covered those states. If you are building a block or a theme, theme.json is still where they belong, but a visual panel means the non-devs on the team can change a hover color without opening a stylesheet.
/* How we used to do it in the style.css */
.wp-block-button__link:hover {
background-color: #007cba;
transition: background 0.3s ease;
}
/* Now handled via Global Styles or theme.json */
{
"styles": {
"blocks": {
"core/button": {
"elements": {
"link": {
":hover": {
"color": { "background": "var(--wp--preset--color--primary)" }
}
}
}
}
}
}
}
UPI payments for clients in India
If you have clients in India, UPI support matters. Unified Payments Interface lets them take money through Google Pay or PhonePe with no credit card in the flow, which removes the main barrier for a lot of buyers. It belongs to the same wider push to make WordPress work globally as the integrated AI assistants rolling out across the dashboard.
The subscriber chart that looked like a cliff
A client called me in a panic because their subscriber chart looked like it was falling off a cliff. It was a scaling bug: a swing of two or three subscribers rendered as a collapse. The changelog confirms the subscriber count chart now reflects trends accurately at a glance. Worth remembering that broken data and a broken visualization look identical from the dashboard.
If this WordPress AI agents work is eating your dev hours, I can take it off your plate. I have been wrestling with WordPress since the 4.x days.
Where this leaves developers
The dashboard is not built only for humans anymore, and that is the real story in this changelog. The direction of travel is agentic commerce and content management. Get comfortable with the Model Context Protocol now. It beats hand-editing alt text on 400 images on a Friday night.