Debug
The Debug section gives you direct control over WordPress's built-in troubleshooting modes — useful for tracking down site errors.
Available debug modes
WP_DEBUG— Turns on WordPress debug mode to catch underlying code issues.WP_DEBUG_LOG— Saves all errors to a log file atwp-content/debug.logfor later review.WP_DEBUG_DISPLAY— Shows debug messages directly inside the page's HTML.
Use
WP_DEBUG_LOG on live sites to track errors silently without affecting visitors. Only enable WP_DEBUG_DISPLAY in development environments — it can expose sensitive code details to the public. 