Co-Pilot / 辅助式
更新于 a month ago

wordpress-performance-best-practises

Bbartekmis
0.0k
bartekmis/wordpress-performance-best-practises
82
Agent 评分

💡 摘要

一本全面的指南,通过最佳实践优化WordPress性能,适用于代码开发。

🎯 适合人群

WordPress开发者插件作者主题设计师网站管理员性能工程师

🤖 AI 吐槽:看起来很能打,但别让配置把人劝退。

安全分析中风险

风险:Medium。建议检查:是否发起外网请求(SSRF/数据外发)。以最小权限运行,并在生产环境启用前审计代码与依赖。


name: wordpress-performance-best-practices description: 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. license: MIT metadata: author: bartekmis version: "1.0.0"

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

五维分析
清晰度9/10
创新性7/10
实用性9/10
完整性8/10
可维护性8/10
优缺点分析

优点

  • 全面的性能指导
  • 按优先级分类,便于参考
  • 适用于WordPress开发的各个方面

缺点

  • 需要熟悉WordPress开发
  • 对初学者可能有些压倒性
  • README中缺乏具体的实现示例

相关技能

woocommerce

A
toolCo-Pilot / 辅助式
82/ 100

“看起来很能打,但别让配置把人劝退。”

wordpress-pro

A
toolCo-Pilot / 辅助式
82/ 100

“该技能需要仔细处理用户输入和输出,以防止SQL注入和XSS漏洞。实施适当的清理和转义至关重要。”

claude-backup

B
toolCo-Pilot / 辅助式
76/ 100

“README 中暗示了潜在风险,例如不当的输入处理和依赖性漏洞。为减轻风险,确保所有输入都经过清理,并定期更新依赖项。”

免责声明:本内容来源于 GitHub 开源项目,仅供展示和评分分析使用。

版权归原作者所有 bartekmis.