Wp Theme Dev logo

Wp Theme Dev

Community
wpacademy
wp-theme-dev

Develop WordPress themes following official WordPress coding standards, theme review requirements, accessibility standards (WCAG 2.1 AA), and modern web development best practices. Use this skill whenever the user wants to create, scaffold, or develop a WordPress theme — including block (FSE) themes, classic themes, child themes, or hybrid themes. Also trigger when the user mentions "WordPress theme", "WP theme", "block theme", "FSE theme", "theme.json", "template parts", "style variations", "child theme", or wants to build a custom design/layout for WordPress. Even if the user just says "build me a theme for X" or "I need a theme", use this skill.

Overview

Publisherwpacademy
Repositorywordpress-dev-skills
Skill namewp-theme-dev
Stars
70
Forks
18
Bundled files
4
LicenseGPL-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 4 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by wpacademy on GitHub. Read the source before you install it.

Installation

Install the Wp Theme Dev AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/wpacademy/wordpress-dev-skills.git /tmp/wordpress-dev-skills
mkdir -p .claude/skills
cp -r /tmp/wordpress-dev-skills/wp-theme-dev .claude/skills/wp-theme-dev
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Wp Theme Dev in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Wp Theme Dev on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Wp Theme Dev is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

WordPress Theme Development

Overview

Create production-ready WordPress themes that follow official WordPress coding standards, the WordPress.org theme review requirements, WCAG 2.1 Level AA accessibility standards, and modern web development best practices. Every theme produced by this skill is accessible, secure, translatable, performant, and ready for WordPress.org submission.

Quick Start Workflow

  1. Read references — Before writing any code, read the relevant reference files:
    • references/block-theme-architecture.md — Block theme structure, theme.json, templates, patterns
    • references/classic-theme-architecture.md — Classic theme structure, template hierarchy, The Loop
    • references/accessibility.md — WCAG 2.1 AA requirements, WordPress accessibility-ready standards
    • references/review-requirements.md — WordPress.org theme review checklist (14 categories)
  2. Determine theme type — Ask if the user wants a block theme (recommended), classic theme, or child theme
  3. Gather requirements — Design goals, color palette, typography, features needed
  4. Scaffold — Generate the directory structure, required files, and theme.json
  5. Build templates & patterns — Create each template/pattern as a separate file
  6. Generate readme.txt — Always include a WordPress.org-compliant readme.txt
  7. Deliver — Ask user if they want files for download or a custom path

Core Principles — ALWAYS Follow These

1. Block Themes Are the Default

Unless the user explicitly asks for a classic theme, always build a block theme (Full Site Editing). Block themes:

  • Use HTML template files (not PHP template files)
  • Configure design through theme.json (not PHP/CSS)
  • Support the Site Editor for full visual editing
  • Use block patterns for reusable layouts
  • Use template parts for headers, footers, sidebars

Only build a classic theme when the user specifically requests it or needs features only available in classic themes.

2. Clean functions.php

The functions.php file should ONLY contain:

  • Theme setup (after_setup_theme hook) — declaring support for theme features
  • Asset enqueueing (wp_enqueue_scripts hook)
  • Registering block patterns, pattern categories, and block styles
  • Registering navigation menus (classic themes)
  • Registering widget areas (classic themes)
  • Loading additional PHP files from inc/ directory

NEVER put lengthy logic, output HTML, or complex functionality directly in functions.php. Split additional functionality into files in the inc/ directory.

3. Accessibility — Non-Negotiable

Every theme MUST meet WCAG 2.1 Level AA and WordPress accessibility requirements. This is not optional.

Read references/accessibility.md for complete requirements. Key mandatory items:

Skip links: First focusable element, visible on focus, jumps to main content.

Keyboard navigation: All interactive elements reachable and operable via keyboard. Visible focus indicators on all focusable elements. Focus order follows logical reading order.

Semantic HTML: Use proper HTML5 landmark elements (<header>, <main>, <nav>, <aside>, <footer>). Use ARIA landmark roles as reinforcement. Proper heading hierarchy (one H1 per page, no skipped levels).

Color contrast: All text meets 4.5:1 ratio against background (3:1 for large text 18px+ bold or 24px+ regular). UI components and focus indicators meet 3:1 ratio.

Content links: Links within body content MUST be underlined. Bold/italic/color-only is not acceptable.

Forms: All form inputs must have explicit <label> elements. No placeholder-only labels. Error states must be perceivable by screen readers.

Images: All <img> tags must have meaningful alt attributes. Decorative images use alt="".

Screen reader text: Use .screen-reader-text class for visually hidden but accessible text. Apply to "Read more" links, icon-only buttons, and repetitive link text.

Repetitive link text: "Read more" links must include the post title (visually hidden is OK).

Media: Embedded media must not auto-play. Provide controls for all media.

4. Security

  • Escape ALL output: esc_html(), esc_attr(), esc_url(), wp_kses_post()
  • Sanitize ALL input: sanitize_text_field(), absint(), etc.
  • Use nonces for any form submissions
  • Validate and check capabilities before privileged operations
  • Never use eval(), base64_decode() on user data, or direct $_GET/$_POST without sanitization

5. WordPress Coding Standards

  • Prefix ALL functions, classes, hooks, handles with a unique theme prefix (minimum 4 characters)
  • All user-facing strings must be translatable: __(), _e(), esc_html__(), esc_html_e(), etc.
  • Text domain must match the theme slug
  • Use wp_enqueue_script() / wp_enqueue_style() — never hardcode <script> or <link> tags
  • Use WordPress bundled libraries (jQuery, etc.) — never bundle your own copies
  • Include original source when using minified files
  • No PHP errors, warnings, or notices with WP_DEBUG enabled
  • No deprecated functions or constants

6. WordPress.org Theme Review Compliance

Every theme MUST comply with all 14 review categories. Read references/review-requirements.md.

Key rules:

  • GPLv2 or later license for ALL code, images, fonts, and assets
  • Include copyright and license for ALL bundled resources in readme.txt
  • No tracking/remote resources without explicit user consent (Google Fonts exception)
  • No plugin territory functionality (CPTs, shortcodes, SEO, analytics, contact forms)
  • No admin dashboard hijacking; notices must be dismissible
  • No redirect on theme activation
  • Do not remove/hide the admin bar
  • Theme names must not use "WordPress", "Theme", or "Twenty*"
  • Screenshot must represent actual theme output, not be an advertisement
  • Complete readme.txt with all required headers

7. Modern CSS & Performance

  • Use CSS custom properties (variables) for theming — align with theme.json presets
  • Use modern layout: CSS Grid and Flexbox (no floats for layout)
  • Use clamp() for fluid responsive typography and spacing
  • Use logical properties (margin-inline, padding-block) for RTL support
  • Mobile-first responsive design with min-width media queries
  • Minimize render-blocking resources
  • Use loading="lazy" on images and iframes below the fold
  • Use font-display: swap for custom fonts
  • Prefer system font stacks or locally hosted fonts over Google Fonts for privacy/performance

Theme Type Reference

User WantsTheme TypeKey Reference
Block theme / FSE themeBlock themereferences/block-theme-architecture.md
Classic PHP themeClassic themereferences/classic-theme-architecture.md
Modify existing themeChild themeBoth references depending on parent type
Hybrid approachClassic + block featuresBoth references

Naming Conventions

Derive all names from the theme name the user provides:

| Element | Convention | Example (theme: "Starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter Blue starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter"starter starter --> Let me fix the table. |

ElementConventionExample (theme: "Starter Blue")
Theme sluglowercase-hyphenatedstarter-blue
Text domainsame as slugstarter-blue
Function prefixlowercase underscore (4+ chars)stbl_
Constant prefixUPPER_SNAKESTBL_
Class prefixUpper_SnakeStarter_Blue_
Handle namesslug prefixstarter-blue-style
Pattern categoryslug prefixstarter-blue
Block style namesslug prefixstarter-blue/card-shadow

Choose a short prefix (4+ characters) derived from the theme name.

Delivery

After building the theme:

  1. Ask the user where they want the files:
    • Download: Copy to /mnt/user-data/outputs/{theme-slug}/ and present as downloadable
    • Custom path: Write to the path the user specifies
  2. Always include readme.txt and style.css with all required headers
  3. Provide a brief summary of generated files
  4. If using a build process (block theme with custom blocks), note npm install && npm run build is needed

Checklist Before Delivery

  • style.css has ALL required headers (Theme Name, Author, Version, License, etc.)
  • readme.txt is present, complete, and includes resource credits
  • ALL output is escaped (esc_html, esc_attr, esc_url, wp_kses_post)
  • ALL input is sanitized
  • ALL strings are translatable with correct text domain
  • ALL functions/classes/handles are prefixed (4+ characters)
  • Skip link is present, first focusable element, visible on focus
  • Keyboard navigation works for all interactive elements
  • Visible focus indicators on all focusable elements
  • Proper heading hierarchy (one H1, no skipped levels)
  • Content links are underlined
  • Color contrast meets WCAG 2.1 AA (4.5:1 text, 3:1 large text/UI)
  • All images have appropriate alt attributes
  • ARIA landmarks are present and unique labels on duplicates
  • "Read more" links include post title (screen-reader-text)
  • Forms have explicit <label> elements
  • No PHP errors/warnings/notices with WP_DEBUG
  • No deprecated functions
  • No bundled WP default libraries
  • No plugin territory functionality
  • No remote resources without consent
  • No admin redirect on activation
  • Assets properly enqueued (not hardcoded)
  • Responsive design works at all breakpoints
  • RTL support via logical properties or RTL stylesheet
  • License is GPLv2 or later
  • Screenshot is 1200×900, represents actual theme output

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Wp Theme Dev AI skill do?

Develop WordPress themes following official WordPress coding standards, theme review requirements, accessibility standards (WCAG 2.1 AA), and modern web development best practices. Use this skill whenever the user wants to create, scaffold, or develop a WordPress theme — including block (FSE) themes, classic themes, child themes, or hybrid themes. Also trigger when the user mentions "WordPress theme", "WP theme", "block theme", "FSE theme", "theme.json", "template parts", "style variations", "child theme", or wants to build a custom design/layout for WordPress. Even if the user just says "b...

Why use Wp Theme Dev on TypingMind?

Because you install it once and use it with any model. Wp Theme Dev is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Wp Theme Dev in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/wpacademy/wordpress-dev-skills/tree/main/wp-theme-dev. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Wp Theme Dev?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Wp Theme Dev?

As many as you like. As long as a model supports skills, you can use Wp Theme Dev with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Wp Theme Dev AI skill free?

Yes. It is published on GitHub by wpacademy under the GPL-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇