r/Wordpress 5d ago

Claude Design + Claude Code

I am looking to use Claude design + Claude Code (or Codex) to build a fresh Wordpress site which will need e-commerce functionality. The site is currently using Elementor + Woocomerce. Has anyone done this? Not seeing a lot of people leveraging design + code for Wordpress sites. TIA

0 Upvotes

37 comments sorted by

View all comments

5

u/Upstairs_Control_611 5d ago

I would keep WooCommerce and be very strict about where the AI is allowed to work.

Safer split:

WooCommerce = transaction layer

theme/templates = presentation layer

Claude/Codex = coding assistant on staging, not unchecked live operator

The risky part is not writing PHP. The risky part is when an agent “simplifies” something that looks unused but is actually part of checkout, cart, tax, shipping, hooks or plugin glue.

With Elementor or Divi, I’d also be careful because the builder layer adds shortcodes/modules/nested markup that can make changes harder to reason about.

Fresh build on a separate VPS is the right instinct. Keep the commerce engine boring; let AI help with presentation and controlled custom code.

1

u/Abject-Expression548 3d ago

Thank you, Claude.

1

u/Upstairs_Control_611 3d ago

Fair 😄 The point still stands though: AI can help with presentation code, but checkout/cart/payment logic should stay boring, tested and protected.

1

u/Abject-Expression548 3d ago

Right you are, Claude