Are traditional CMS structures becoming a limitation for AI interpretability?
I’ve been experimenting with a different way of structuring WordPress sites and I’m curious if others here are exploring similar ideas.
Most CMS architectures are still fundamentally page-centric:
- content lives inside pages
- schema is often attached page-by-page
- relationships between entities are mostly implicit
But LLMs and knowledge systems don’t really reason in pages. They reason in entities, attributes and relationships.
So I started testing an entity-centric layer on top of WordPress:
- structured entities (Organization, Person, Service, etc.)
- connected JSON-LD
- internal KG pages
- relationship-oriented linking between entities
- graph consistency across the site
The interesting part is not generating schema markup itself, but trying to reduce semantic fragmentation and make the site more machine-readable as a coherent graph.
I’m starting to think traditional CMS structures may become a bottleneck for AI interpretability unless they evolve toward more explicit graph models.
Curious if others here are working on similar approaches or thinking in the same direction.