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.
What this skill does
# 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 | Priority | Category | Impact | Prefix | |----------|----------|--------|--------| | 1 | Database Optimization | CRITICAL | `db-` | | 2 | Caching Strategies | CRITICAL | `cache-` | | 3 | Asset Management | HIGH | `asset-` | | 4 | Theme Performance | HIGH | `theme-` | | 5 | Plugin Architecture | MEDIUM-HIGH | `plugin-` | | 6 | Media Optimization | MEDIUM | `media-` | | 7 | API and AJAX | MEDIUM | `api-` | | 8 | Advanced Patterns | LOW-MEDIUM | `advanced-` | ## 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`
Related in Web Dev
generating-lwc-components
IncludedLightning Web Components with PICKLES methodology and 165-point scoring. Use this skill when the user creates or edits LWC components, builds wire service patterns, or writes Jest tests for LWC. TRIGGER when: user creates/edits LWC components, touches lwc/**/*.js, .html, .css, .js-meta.xml files, or asks about wire service, SLDS, or Jest LWC tests. DO NOT TRIGGER when: Apex classes (use generating-apex), Aura components, or Visualforce.
tanstack-query
IncludedManage server state in React with TanStack Query v5. Set up queries with useQuery, mutations with useMutation, configure QueryClient caching strategies, implement optimistic updates, and handle infinite scroll with useInfiniteQuery. Use when: setting up data fetching in React projects, migrating from v4 to v5, or fixing object syntax required errors, query callbacks removed issues, cacheTime renamed to gcTime, isPending vs isLoading confusion, keepPreviousData removed problems.
document-processor-api
IncludedProcess documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs, redact PII, watermark, sign, fill forms, optimize PDFs, or produce compliance outputs like PDF/A or PDF/UA. Triggers include convert to PDF, merge these PDFs, OCR this scan, extract tables, redact PII, sign this PDF, make this PDF/A, or linearize for web delivery.
nutrient-document-processing
IncludedProcess documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs, redact PII, watermark, sign, fill forms, optimize PDFs, or produce compliance outputs like PDF/A or PDF/UA. Triggers include convert to PDF, merge these PDFs, OCR this scan, extract tables, redact PII, sign this PDF, make this PDF/A, or linearize for web delivery.
tanstack-query
IncludedManage server state in React with TanStack Query v5. Covers useMutationState, simplified optimistic updates, throwOnError, network mode (offline/PWA), and infiniteQueryOptions. Use when setting up data fetching, fixing v4→v5 migration errors (object syntax, gcTime, isPending, keepPreviousData), or debugging SSR/hydration issues with streaming server components.
accelint-nextjs-best-practices
IncludedNext.js performance optimization and best practices. Use when writing Next.js code (App Router or Pages Router); implementing Server Components, Server Actions, or API routes; optimizing RSC serialization, data fetching, or server-side rendering; reviewing Next.js code for performance issues; fixing authentication in Server Actions; or implementing Suspense boundaries, parallel data fetching, or request deduplication.