wp-performance-review

Scan WordPress PHP code for performance anti-patterns and caching issues.

222|17|Updated Nov 26, 2025
One-click install
npx skills add https://github.com/elvismdev/claude-wordpress-skills --skill wp-performance-review
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wp-performance-review
Source: https://github.com/elvismdev/claude-wordpress-skills/tree/main/skills/wp-performance-review
Command: npx skills add https://github.com/elvismdev/claude-wordpress-skills --skill wp-performance-review

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps WordPress teams quickly identify and remediate performance bottlenecks in PHP code, themes, and plugins, reducing slow page loads and resource usage.

Core Features & Use Cases

  • Automated PHP performance checks: Detects common anti-patterns like query_posts, unbounded WP_Query, and non-cached HTTP calls.
  • Caching optimization guidance: Recommends object caching, transient usage, and pre-fetch strategies to reduce DB load.
  • Pre-launch performance audits: Reviews code paths for high-traffic events and suggests optimizations.
  • Use Case: For a slow plugin, run this skill to produce a prioritized list of line-item fixes with severity.

Quick Start

Use the skill to analyze a WordPress project directory and return a prioritized list of performance issues.

Frequently Asked Questions about wp-performance-review

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

FAQPage Schema
How do I find WordPress performance bottlenecks in my PHP code?

To find WordPress performance bottlenecks, you can scan PHP code to detect anti-patterns like query_posts, unbounded WP_Query, and non-cached HTTP calls, receiving a prioritized list of fixes with line numbers and severity levels.

What are common WP_Query anti-patterns that slow down WordPress sites?

Common WP_Query anti-patterns include missing no_found_rows arguments and unbounded posts_per_page limits, both of which cause unnecessary database overhead and significantly slow down WordPress page loads.

How do I optimize WordPress caching strategies for high-traffic events?

Optimize WordPress caching for high-traffic events by implementing object caching, transient usage, and pre-fetch strategies to reduce database load and prevent slow page loads or 500 errors.

Can I run a pre-launch performance audit on my WordPress plugin?

Yes, you can run a pre-launch performance audit on a WordPress plugin by analyzing its project directory to review code paths and produce a prioritized list of performance issues with line-item fixes.

Why does my WordPress site timeout during traffic spikes?

WordPress sites timeout during traffic spikes due to inefficient database queries and missing object caching, which increase resource usage and cause slow page loads or 500 errors under high load.

Does this performance review work with custom WordPress themes?

Yes, this performance review works with custom WordPress themes, evaluating their PHP code, WP_Query usage, and caching strategies to identify and remediate performance bottlenecks quickly.