Challenge - 5 Problems
Site Health Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
π» Command Output
intermediate2:00remaining
Check WordPress Site Health Status via WP-CLI
You run the command
wp site health status on your WordPress site using WP-CLI. What output should you expect if the site has no critical issues?Wordpress
wp site health status
Attempts:
2 left
π‘ Hint
Think about what a healthy site status message would say.
β Incorrect
The WP-CLI command
wp site health status returns 'Status: Good. No critical issues found.' when the site is healthy.π§ Conceptual
intermediate2:00remaining
Understanding Site Health Checks in WordPress
Which of the following best describes what WordPress Site Health checks monitor?
Attempts:
2 left
π‘ Hint
Think about what kinds of problems affect site health beyond just updates.
β Incorrect
WordPress Site Health checks look for security, performance, and configuration issues that can affect the siteβs stability and security.
β Troubleshoot
advanced2:00remaining
Diagnosing Site Health Critical Issues
Your WordPress site health report shows a critical issue: "Your PHP version is outdated." Which action will fix this problem?
Attempts:
2 left
π‘ Hint
Think about what controls the PHP version your site runs on.
β Incorrect
The PHP version is controlled by the web server environment. Updating PHP to a supported version resolves this critical issue.
π Workflow
advanced2:00remaining
Automating Site Health Checks with WP-CLI
You want to automate daily site health checks and save the report to a file using WP-CLI. Which command correctly does this?
Attempts:
2 left
π‘ Hint
Consider how shell redirection works with WP-CLI commands.
β Incorrect
The command
wp site health status > site-health-report.txt runs the health status check and saves the output to a text file.β
Best Practice
expert2:00remaining
Best Practice for Maintaining WordPress Site Health
Which practice is the best for maintaining long-term WordPress site health?
Attempts:
2 left
π‘ Hint
Think about what keeps software secure and stable over time.
β Incorrect
Regular updates and monitoring site health reports help keep WordPress secure, stable, and performant.