WordPress
The CMS that powers 43 % of every website — reinterpreted with . Block editor instead of page builder, ChatGPT/Claude instead of SEO Premium, instead of WPML, instead of a booking plugin. Plugin stack cut to a third, daily maintenance in 15 minutes.
Project profile
WordPress
The open source content management system
As of: June 2, 2026
GitHub stars
21k
Forks
13k
Open issues
3
License
GPL-2.0+
Latest version
v7.0
Language
PHP
Third-party source · Wikidata (CC0)
Wikidata profile
License
GNU General Public License, version 2.0 or later
Developer
WordPress Foundation
Initial release
2003-05-27
What is WordPress in 2026?
WordPress has been the most widely deployed CMS since 2003 by far — 43 % of all websites worldwide run on it. What has fundamentally changed in the past 5 years: the Gutenberg Block Editor has replaced classic page builders like WPBakery or Elementor in many . Content is edited as reusable blocks, not as monolithic shortcode soup.
The decisive point for SMBs today: together with (ChatGPT, Claude, ) the typical 'plugin stack madness' (WPBakery, Yoast Premium, WPML, security suite, optimisation plugin) can be cut to a fraction. generates SEO text, translates multilingual content, drafts posts, optimises images. What used to cost €700/year in plugin fees runs today for €120/year in costs plus €60/year hosting.
Why a restaurant uses WordPress + AI
A neighbourhood restaurant with 30 seats cannot afford a marketing agency. A website is mandatory — menu, opening hours, reservations, seasonal events. Classic WordPress with a plugin stack means: €700/year in licenses, constant update maintenance, occasional security issues. Plus: a 'professional' site overhaul from an agency every 3 months for €1,500.
With an this changes fundamentally: a daily menu post in 30 seconds, multilingual translations without a WPML licence, SEO text without a Yoast subscription, image generation without a photo-shoot budget. The owner does everything herself — from the smartphone. The website stays current, the restaurant stays visible, costs stay manageable.
Client case study
Trattoria Sole
Italian neighbourhood restaurant in Hameln, 5 staff — owner Antonia + 2 cooks + 2 service. 30 seats, 1 location. Website on WordPress since 2018, previously with a plugin stack (WPBakery, Yoast Premium, WPML, Smush Pro, BackUpWP, MonsterInsights). 14 months ago migrated to vanilla WordPress + . Today: daily updates in 15 minutes, the plugin stack cut to 4 free plugins, costs from €700/year down to €190/year.
Daily updates without an agency
Update the menu in <15 minutes
Multilingual DE/EN/IT
SEO without Yoast Premium
Images for seasonal posts
Reservations without plugin fees
All guns blazing: AI patterns for WordPress
Eight concrete workflows Antonia uses daily. Each replaces a plugin function or a former agency task — and together they cost less than any single one of the replaced plugins.
Dish-of-the-day post via Claude/ChatGPT
Update the menu as a block set
Images via DALL-E 3 or Midjourney
Sensitive text via Open WebUI locally
Reservation workflow via n8n
SEO text directly via Claude
Translation DE→EN→IT locally
Voice message → post in 60 seconds
What WordPress + AI can really do in 2026
Six WordPress capabilities used fundamentally differently through than they were in 2020.
Block Editor (Gutenberg)
REST API + WP-CLI
ACF Free + custom fields
2FA + strong passwords
Block themes instead of page builders
GPL: lifelong data sovereignty
Honest alternatives
If WordPress is not a fit — what else?
Three alternatives with different focuses. WordPress + has the best pragmatism corridor for SMBs that want to maintain their own site.
All-in-one SaaS
Squarespace
Squarespace Inc., USA
- + Very easy setup, no maintenance
- + Integrated AI builder (since 2024)
- − From $16/month, from $49 for Commerce
- − US cloud, complete lock-in
Drag-and-drop SaaS
Wix
Wix.com Ltd., Israel
- + Very intuitive editor for beginners
- + AI site generator integrated
- − Comparably expensive to Squarespace
- − Migrating away = practically impossible
Headless CMS
Statamic / Strapi
Statamic LLC / Strapi SAS
- + Modern, flat-file or DB-based
- + Very good developer UX
- − Needs developer skills
- − Frontend build separately (Next.js, Astro)
Rule of thumb: anyone who already knows WordPress and is AI-affine (or has consulting support) saves significantly with the . Anyone with absolutely no appetite for WordPress updates is honestly better served by Squarespace — cost traded for comfort. A headless CMS pays off when a Next.js front end is being built anyway (e.g. for multi-channel publishing).
Pricing — concrete numbers
WordPress + AI: €190/year instead of €700/year.
License
WordPress: GPL-2.0+, fully free. Block themes: GPL-compatible. Gutenberg blocks: GPL. What costs: optional AI APIs (Claude, OpenAI) and hosting. All plugins we recommend are free (ACF Free, Polylang Free, Two Factor).
Running costs
Hosting (Hetzner Webhosting CX22 with MariaDB): €5/month = €60/year. AI API (Claude or OpenAI for daily posts + SEO + translations): €5–15/month = €60–180/year. Domain: €10/year. TOTAL: €130–250/year.
Effort
WordPress vanilla setup: 30 minutes. Block theme + base configuration: 1 day. n8n workflows for AI patterns (dish of the day, voice message, reservations): 2–3 consulting days. Owner training: 1 day. Total restaurant setup: 4–5 days.
Comparison with the plugin-stack era: WPBakery 99 + Yoast Premium 99 + WPML 99 + Smush Pro 60 + BackUpWP 70 + MonsterInsights 200 = €627/year for plugins alone. Plus hosting, domain, occasional agency calls. Trattoria Sole saves about €510/year today — with a better maintained website.
n8n workflow: voice message → post in 60 seconds
# n8n workflow: WhatsApp → Whisper → Claude → WordPress
NODES:
1. WhatsApp trigger (via Twilio)
↓ audio attachment (.ogg)
2. Whisper node (Ollama local, no cloud!)
- model: whisper-large-v3
- language: de
↓ transcription as text
3. Claude node (Anthropic API)
- prompt: "From this note: '{{transcription}}'
produce a restaurant post in Block Editor format."
↓ HTML output
4. WordPress node (REST API)
- POST /wp-json/wp/v2/posts
- status: 'draft' # not live yet, review first
↓ post ID
5. Telegram node (Antonia gets notified)
- 'Draft ready: https://trattoria-sole.com/wp-admin/post.php?post={{id}}'
- one-click publish via mobile browserPrompt pattern: dish-of-the-day post via Claude
# Antonia types into the smartphone in the morning:
Dish of the day: Saltimbocca, spinach, mashed potatoes
Price: 18.50
Vibe: Roman, casual, no marketing speak
# n8n webhook → Claude API:
PROMPT:
"Write a WordPress Block Editor post (HTML format)
for our dish of the day at 'Trattoria Sole' in Hameln.
Keywords: {{dish}} for {{price}} EUR.
Vibe: {{vibe}}, 80-100 words,
ends with a short invitation to book.
Generate in WordPress block format:
- 1x block
- 1x <p> block with description
- 1x <p> block with price + CTA"
# n8n → WordPress REST API → post live:
curl -X POST https://trattoria-sole.com/wp-json/wp/v2/posts \
-H "Authorization: Bearer ${WP_APP_PASSWORD}" \
-d '{
"title": "Today on the menu: Saltimbocca",
"content": "",
"categories": [12],
"status": "publish"
}'Related topics
WordPress + AI needs the right stack
The workflows run through , local models through , Cal.com for reservations, BookStack for internal documentation of the workflows:
Ready for the next step?
Free intro call, no strings attached. In 30 minutes you'll know whether and how AI can help your business.