Habilidades wordpress-dev
W

wordpress-dev

Seguro ⚡ Contiene scripts📁 Acceso al sistema de archivos

Build WordPress Themes and Plugins

Get comprehensive WordPress development guidance including coding standards, security best practices, performance optimization, and ready-to-use code templates. Generate custom post types, taxonomies, and REST API endpoints quickly.

Soporta: Claude Codex Code(CC)
📊 71 Adecuado
1

Descargar el ZIP de la skill

2

Subir en Claude

Ve a Configuración → Capacidades → Skills → Subir skill

3

Activa y empieza a usar

Pruébalo

Usando "wordpress-dev". Create a 'Team Member' custom post type with photo upload support

Resultado esperado:

  • Generated CPT with thumbnail support enabled
  • Added menu icon for people category
  • Included REST base path as 'team-members'
  • Labels configured for singular 'Team Member' and plural 'Team Members'

Usando "wordpress-dev". Add a security meta box for contact forms

Resultado esperado:

  • Created meta box with nonce verification
  • Implemented esc_attr() for text output
  • Used esc_textarea() for multi-line fields
  • Added wp_nonce_field() for form protection

Auditoría de seguridad

Seguro
v5 • 1/16/2026

This is a benign WordPress development documentation skill. The static analyzer flagged 570 potential issues, but ALL are FALSE POSITIVES. The findings are code examples in markdown documentation files (docs/*.md) that the scanner misidentified as executable code. The skill contains legitimate PHP templates using WordPress security best practices including nonce verification, output escaping, and capability checks. No malicious patterns, credential theft, or code execution vulnerabilities exist.

16
Archivos escaneados
6,100
Líneas analizadas
2
hallazgos
5
Auditorías totales

Factores de riesgo

⚡ Contiene scripts (1)
📁 Acceso al sistema de archivos (1)

Puntuación de calidad

45
Arquitectura
100
Mantenibilidad
87
Contenido
20
Comunidad
100
Seguridad
91
Cumplimiento de la especificación

Lo que puedes crear

Generate CPT boilerplate

Create production-ready custom post type registration code with labels, capabilities, and REST support.

Build secure meta boxes

Develop admin meta boxes with proper sanitization, nonce verification, and accessibility support.

Create REST endpoints

Register custom REST API endpoints with permission callbacks and argument validation.

Prueba estos prompts

Create Custom Post Type
Create a 'Property' custom post type with fields for price, address, and bedrooms. Include proper labels, menu icon, and REST API support.
Add Security Review
Review this WordPress plugin code for security issues. Check for proper sanitization, escaping, nonce verification, and capability checks.
Optimize Performance
Optimize this WP_Query for better performance. Add caching with transients and explain the improvements made.
Create Taxonomy
Create a 'Property Type' custom taxonomy (hierarchical) for the Property custom post type. Include proper labels and REST support.

Mejores prácticas

  • Always use WordPress sanitization functions like sanitize_text_field() and esc_attr() for user input
  • Verify nonces with check_ajax_referer() or wp_verify_nonce() before processing form data
  • Use $wpdb->prepare() with placeholders for all database queries to prevent SQL injection

Evitar

  • Do not use query_posts() for secondary loops - use WP_Query or get_posts() instead
  • Do not suppress errors with @ operator - use proper error handling instead
  • Do not hardcode URLs - use WordPress functions like admin_url() and home_url()

Preguntas frecuentes

Does this skill interact with my WordPress site?
No. This skill generates code templates and provides documentation. It does not execute code or modify databases.
What PHP version is required?
Templates follow WordPress minimum requirements. Use PHP 7.4 or higher for best compatibility.
Are the generated templates secure?
Yes. All templates include proper sanitization, escaping, and nonce verification where applicable.
Can I use these templates in plugins?
Yes. Templates work for both themes and plugins. Adjust namespace and prefix naming as needed.
Does this support block themes?
Yes. Documentation includes theme.json guidance and block template structure for WordPress 6.x.
How do I customize the templates?
Replace placeholder tags like {{POST_TYPE}} and {{TEXT_DOMAIN}} with your actual values before use.