Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
Specialized workflow for creating custom WordPress themes from scratch, including modern block editor (Gutenberg) support, template hierarchy, responsive design, and WordPress 7.0 enhancements.
WordPress 7.0 Theme Features
Admin Refresh
New default color scheme
View transitions between admin screens
Modern typography and spacing
Pattern Editing
ContentOnly mode defaults for unsynced patterns
disableContentOnlyForUnsyncedPatterns setting
Per-block instance custom CSS
Navigation Overlays
Customizable navigation overlays
Improved mobile navigation
New Blocks
Icon block
Breadcrumbs block with filters
Responsive grid block
Theme.json Enhancements
Pseudo-element support
Block-defined feature selectors honored
Enhanced custom CSS
Iframed Editor
Block API v3+ enables iframed post editor
Full enforcement in 7.1, opt-in in 7.0
When to Use This Workflow
Use this workflow when:
Creating custom WordPress themes
Converting designs to WordPress themes
Adding block editor support
Implementing custom post types
Building child themes
Implementing WordPress 7.0 design features
Workflow Phases
Phase 1: Theme Setup
Skills to Invoke
app-builder - Project scaffolding
frontend-developer - Frontend development
Actions
Create theme directory structure
Set up style.css with theme header
Create functions.php
Configure theme support
Set up enqueue scripts/styles
WordPress 7.0 Theme Header
/*
Theme Name: My Custom Theme
Theme URI: https://example.com
Author: Developer Name
Author URI: https://example.com
Description: A WordPress 7.0 compatible theme with modern design
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: block-patterns, block-styles, editor-style, wide-blocks
*/
Copy-Paste Prompts
Use @app-builder to scaffold a new WordPress theme project
Phase 2: Template Hierarchy
Skills to Invoke
frontend-developer - Template development
Actions
Create index.php (fallback template)
Implement header.php and footer.php
Create single.php for posts
Create page.php for pages
Add archive.php for archives
Implement search.php and 404.php
WordPress 7.0 Template Considerations
Test with iframed editor
Verify view transitions work
Check new admin color scheme compatibility
Copy-Paste Prompts
Use @frontend-developer to create WordPress template files