wordpress-performance-best-practices

WordPress performance optimization guidelines for plugin, theme, and custom code development. This skill should be used when writing, reviewing, or refactoring WordPress PHP code to ensure optimal performance patterns. Triggers on tasks involving WP_Query, database queries, caching, hooks, REST API, or WordPress theme/plugin development.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "wordpress-performance-best-practices" with this command: npx skills add bartekmis/wordpress-performance-best-practises/bartekmis-wordpress-performance-best-practises-wordpress-performance-best-practices

WordPress Performance Best Practices

Comprehensive performance optimization guide for WordPress development, designed for AI agents and LLMs. Contains 34 rules across 8 categories, prioritized by impact to guide code review and generation.

When to Apply

Reference these guidelines when:

  • Writing WordPress plugins or themes
  • Working with WP_Query or database operations
  • Implementing caching (transients, object cache)
  • Optimizing asset loading (scripts, styles)
  • Reviewing WordPress code for performance issues
  • Working with REST API or AJAX handlers

Rule Categories by Priority

PriorityCategoryImpactPrefix
1Database OptimizationCRITICALdb-
2Caching StrategiesCRITICALcache-
3Asset ManagementHIGHasset-
4Theme PerformanceHIGHtheme-
5Plugin ArchitectureMEDIUM-HIGHplugin-
6Media OptimizationMEDIUMmedia-
7API and AJAXMEDIUMapi-
8Advanced PatternsLOW-MEDIUMadvanced-

Quick Reference

1. Database Optimization (CRITICAL)

  • db-prepared-statements - Always use $wpdb->prepare() for queries
  • db-avoid-post-not-in - Avoid post__not_in, filter in PHP instead
  • db-use-wp-query - Use WP_Query/get_posts instead of direct DB queries
  • db-limit-query-results - Never use posts_per_page => -1
  • db-meta-query-indexing - Optimize meta queries, consider taxonomies
  • db-fields-optimization - Use fields => 'ids' when only IDs needed

2. Caching Strategies (CRITICAL)

  • cache-transients-proper-use - Use transients for external API calls
  • cache-object-cache - Use wp_cache_* with cache groups
  • cache-remote-requests - Always cache wp_remote_get responses
  • cache-invalidation - Implement precise, event-driven invalidation
  • cache-fragment-caching - Cache expensive template fragments

3. Asset Management (HIGH)

  • asset-proper-enqueue - Use wp_enqueue_script/style, never hardcode
  • asset-conditional-loading - Only load assets where needed
  • asset-defer-async - Use defer/async for non-critical scripts
  • asset-dequeue-unused - Remove unused plugin assets
  • asset-minification - Minify assets, use critical CSS

4. Theme Performance (HIGH)

  • theme-avoid-queries-in-templates - Keep queries out of template files
  • theme-template-parts - Use get_template_part with data passing
  • theme-loop-optimization - Optimize loops, use meta/term cache priming
  • theme-hooks-placement - Use appropriate hook priorities

5. Plugin Architecture (MEDIUM-HIGH)

  • plugin-conditional-loading - Load code only when needed
  • plugin-autoloading - Use PSR-4 autoloading
  • plugin-activation-hooks - Use activation hooks for setup tasks
  • plugin-hook-removal - Remove hooks properly with matching priority

6. Media Optimization (MEDIUM)

  • media-responsive-images - Use srcset and sizes attributes
  • media-lazy-loading - Lazy load below-fold, eager load LCP
  • media-image-sizes - Define appropriate custom image sizes

7. API and AJAX (MEDIUM)

  • api-rest-optimization - Optimize REST endpoints, add caching headers
  • api-admin-ajax - Use REST API for frontend, avoid admin-ajax
  • api-nonce-validation - Implement proper nonce validation

8. Advanced Patterns (LOW-MEDIUM)

  • advanced-autoload-optimization - Keep autoloaded options under 800KB
  • advanced-cron-optimization - Use system cron, batch long tasks
  • advanced-memory-management - Process in batches, clean up memory
  • advanced-query-monitor - Profile before optimizing

How to Use

Read individual rule files for detailed explanations and code examples:

rules/db-prepared-statements.md
rules/cache-transients-proper-use.md
rules/_sections.md

Each rule file contains:

  • Brief explanation of why it matters
  • Incorrect code example with explanation
  • Correct code example with explanation
  • Additional context and references

Full Compiled Document

For the complete guide with all rules expanded: AGENTS.md

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated
Coding

ai-dating

This skill enables dating and matchmaking workflows. Use it when a user asks to make friends, find a partner, run matchmaking, or provide dating preferences/profile updates. The skill should execute `dating-cli` commands to complete profile setup, task creation/update, match checking, contact reveal, and review.

Archived SourceRecently Updated
Coding

clawhub-rate-limited-publisher

Queue and publish local skills to ClawHub with a strict 5-per-hour cap using the local clawhub CLI and host scheduler.

Archived SourceRecently Updated