WP Rich Article — WordPress Classic Editor Rich HTML Generator
Generate visually rich HTML articles designed to be pasted directly into the
WordPress Classic Editor "Text" tab. Every article must include visual design
components — plain text-only output is not acceptable.
Writing Style
- Write in a clear, reader-friendly tone
- Avoid AI boilerplate phrases ("In today's rapidly evolving...", "It's worth noting that...")
- Be specific and concrete rather than vague and abstract
- Match the tone to your site's audience
Design Requirements (no plain text)
All styling uses inline CSS. No external stylesheets or class dependencies.
Required Components
Lead section box — Gradient background (e.g., linear-gradient(135deg, #667eea 0%, #764ba2 100%)), white text, padding: 2rem, border-radius: 12px
Card sections — background: #fff, border-radius: 12px, box-shadow: 0 2px 12px rgba(0,0,0,0.08), padding: 2rem, margin: 1.5rem 0
Grid layout — display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem
Color-coded comparison cards — Different accent colors per item (left border: border-left: 4px solid {color})
Code blocks — background: #1e1e1e; color: #d4d4d4; padding: 1.5rem; border-radius: 8px; overflow-x: auto; font-family: 'Fira Code', monospace
Pastel summary boxes — background: #f0f7ff (blue) or #f0fff4 (green), border-radius: 12px, padding: 1.5rem
Quotes and Tips — Icon-decorated, distinguished by background color
Color Palette Examples
- Main:
#667eea, #764ba2
- Accent:
#f093fb, #4facfe, #43e97b
- Pastel:
#f0f7ff, #fff5f5, #f0fff4, #fffff0
You can customize these colors to match your site's branding.
Article Structure
1. Lead section (gradient box)
2. Introduction (why this topic matters)
3. Main content (cards and grids for visual organization)
4. Practical examples (code blocks, screenshots, step-by-step)
5. Summary (pastel box)
Output
- Save as an
.html file
- The HTML should be ready to paste directly into the Classic Editor "Text" tab
- All styles must be inline (no
<style> blocks or external CSS)
- Responsive design via
max-width, auto-fit grids, and relative units
1---2name: wp-rich-article3description: Generate rich HTML articles for the WordPress Classic Editor with inline CSS. Produces visually appealing content using gradients, cards, grids, color-coded boxes, and code blocks. Plain text-only articles are not allowed. Use when writing WordPress articles that need professional visual design.4---56# WP Rich Article — WordPress Classic Editor Rich HTML Generator78Generate visually rich HTML articles designed to be pasted directly into the9WordPress Classic Editor "Text" tab. Every article must include visual design10components — plain text-only output is not acceptable.1112---1314## Writing Style1516- Write in a clear, reader-friendly tone17- Avoid AI boilerplate phrases ("In today's rapidly evolving...", "It's worth noting that...")18- Be specific and concrete rather than vague and abstract19- Match the tone to your site's audience2021---2223## Design Requirements (no plain text)2425All styling uses inline CSS. No external stylesheets or class dependencies.2627### Required Components28291. **Lead section box** — Gradient background (e.g., `linear-gradient(135deg, #667eea 0%, #764ba2 100%)`), white text, `padding: 2rem`, `border-radius: 12px`30312. **Card sections** — `background: #fff`, `border-radius: 12px`, `box-shadow: 0 2px 12px rgba(0,0,0,0.08)`, `padding: 2rem`, `margin: 1.5rem 0`32333. **Grid layout** — `display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem`34354. **Color-coded comparison cards** — Different accent colors per item (left border: `border-left: 4px solid {color}`)36375. **Code blocks** — `background: #1e1e1e; color: #d4d4d4; padding: 1.5rem; border-radius: 8px; overflow-x: auto; font-family: 'Fira Code', monospace`38396. **Pastel summary boxes** — `background: #f0f7ff` (blue) or `#f0fff4` (green), `border-radius: 12px`, `padding: 1.5rem`40417. **Quotes and Tips** — Icon-decorated, distinguished by background color4243### Color Palette Examples44- Main: `#667eea`, `#764ba2`45- Accent: `#f093fb`, `#4facfe`, `#43e97b`46- Pastel: `#f0f7ff`, `#fff5f5`, `#f0fff4`, `#fffff0`4748You can customize these colors to match your site's branding.4950---5152## Article Structure5354```551. Lead section (gradient box)562. Introduction (why this topic matters)573. Main content (cards and grids for visual organization)584. Practical examples (code blocks, screenshots, step-by-step)595. Summary (pastel box)60```6162---6364## Output6566- Save as an `.html` file67- The HTML should be ready to paste directly into the Classic Editor "Text" tab68- All styles must be inline (no `<style>` blocks or external CSS)69- Responsive design via `max-width`, `auto-fit` grids, and relative units