What if your content editors could click any text on the live site and just... change it? No admin panel, no guessing which field maps to what, no "preview" button. That's what Live CMS does for WordPress.
This article walks through installation, AI agent skill setup, and the developer workflow for building editable pages.
Chapter 1: Installing Live CMS
Live CMS is a standard WordPress plugin distributed as a zip file.
Requirements
- WordPress 6.0+
- PHP 7.4+
- A theme that calls
wp_head()andwp_footer()(most themes do)
Install via Zip
- Get the
live-cms.zipby this form - In your WordPress admin, go to Plugins → Add New → Upload Plugin
- Choose the zip file and click Install Now
- Click Activate
That's it. No external dependencies, no API keys, no build step. The plugin is self-contained.
Verify It Works
- Log in as an admin or editor
- Make sure Users → Profile → "Show Toolbar when viewing site" is enabled
- Visit any frontend page
- You should see ✏️ Live CMS in the admin toolbar
Nothing shows up? Check that your theme fires
wp_head()inside<head>andwp_footer()before</body>. Templates usingget_header()/get_footer()already do this. Custom templates need to call them explicitly.
Top comments (0)