Recall & Review
beginner
What is WP_DEBUG in WordPress?
WP_DEBUG is a PHP constant in WordPress that enables the display of errors and warnings to help developers find and fix issues in their code.
Click to reveal answer
beginner
How do you enable WP_DEBUG in WordPress?
You enable WP_DEBUG by adding or setting
define('WP_DEBUG', true); in the wp-config.php file.Click to reveal answer
beginner
What happens when WP_DEBUG is set to true?
When WP_DEBUG is true, WordPress shows PHP errors, warnings, and notices on the site, helping developers spot problems early.
Click to reveal answer
intermediate
What is the purpose of WP_DEBUG_LOG?
WP_DEBUG_LOG saves all errors and warnings to a file named
debug.log inside the wp-content folder, so you can review them later.Click to reveal answer
beginner
Why should WP_DEBUG be turned off on live websites?
Because showing errors publicly can reveal sensitive information and confuse visitors, WP_DEBUG should be off on live sites to keep them secure and user-friendly.
Click to reveal answer
Where do you add the line to enable WP_DEBUG?
✗ Incorrect
WP_DEBUG is enabled by adding
define('WP_DEBUG', true); in the wp-config.php file.What does setting WP_DEBUG to true do?
✗ Incorrect
Setting WP_DEBUG to true makes WordPress display PHP errors and warnings to help with debugging.
What file stores error logs when WP_DEBUG_LOG is enabled?
✗ Incorrect
When WP_DEBUG_LOG is true, errors are saved in the debug.log file inside the wp-content folder.
Why should WP_DEBUG be off on live sites?
✗ Incorrect
Showing errors on live sites can expose sensitive info and confuse users, so WP_DEBUG should be off.
Which of these is NOT a WP_DEBUG related constant?
✗ Incorrect
WP_DEBUG_THEME is not a valid WordPress debugging constant.
Explain how to enable debugging in WordPress using WP_DEBUG and what you should be careful about.
Think about the file to edit and why showing errors publicly can be risky.
You got /3 concepts.
Describe the role of WP_DEBUG_LOG and how it helps developers.
Consider how logging errors to a file is useful compared to showing them on screen.
You got /3 concepts.