wordpress-themes

Create VIP-compliant WordPress themes with modular structure and Dart-Sass workflows.

Updated Nov 5, 2025
One-click install
npx skills add https://github.com/oiler/claude-skills --skill wordpress-themes
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wordpress-themes
Source: https://github.com/oiler/claude-skills/tree/main/wordpress-themes
Command: npx skills add https://github.com/oiler/claude-skills --skill wordpress-themes

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes assets (resource) components.

What problem does it solve?

This skill streamlines the creation of VIP-compliant WordPress themes.

Core Features & Use Cases

  • Modular theme structure with clear separation of concerns for templates, assets, and functions.
  • VIP standards adherence, including escaping, sanitization, proper file paths, and translation/text-domain best practices.
  • Dart-Sass via Homebrew workflow for modern CSS authoring and asset compilation, plus script/style enqueueing patterns for reliable asset loading.
  • Use cases include building enterprise-grade themes for agencies, clients, or internal projects with maintainable code and repeatable setup.

Quick Start

Install dart-sass via Homebrew (brew install sass/sass/sass) and compile styles from src/scss to assets/css with sass. Then scaffold a theme-root and begin implementing templates in template-parts, assets, and inc/functions following the provided patterns.

Frequently Asked Questions about wordpress-themes

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a WordPress theme that meets VIP security standards?

To build a VIP-compliant WordPress theme, you must enforce strict security practices including data sanitization, output escaping, proper file path usage, and translation best practices across all templates and functions. This approach ensures enterprise-grade security.

What is the best way to structure a modular WordPress theme for enterprise development?

The best way to structure a modular WordPress theme is by maintaining a clear separation of concerns across template-parts, assets, and inc/functions directories. This modular structure guarantees maintainable code for enterprise-grade projects.

How do I compile CSS with dart-sass via Homebrew for WordPress theme development?

To compile CSS with dart-sass via Homebrew, install the compiler using `brew install sass/sass/sass`, then compile styles from the `src/scss` directory into the `assets/css` directory to enable modern CSS authoring and reliable asset loading.

Does VIP WordPress theme development require specific script and style enqueueing patterns?

Yes, VIP WordPress theme development requires proper script and style enqueueing patterns for reliable asset loading. Following these standardized enqueueing practices alongside modular structure ensures your assets load securely and dependably.

Why does my WordPress theme fail VIP automated security checks?

Your WordPress theme fails VIP security checks if it lacks proper output escaping, data sanitization, or correct file path usage. Adhering to VIP standards by sanitizing inputs and escaping outputs across all templates resolves these compliance failures.