0
0
Wordpressframework~5 mins

Debugging with WP_DEBUG in Wordpress - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AIn the theme's style.css file
BIn the .htaccess file
CIn the functions.php file
DIn the wp-config.php file
What does setting WP_DEBUG to true do?
AChanges the site theme
BShows PHP errors and warnings on the site
CDisables all plugins
DDeletes the database
What file stores error logs when WP_DEBUG_LOG is enabled?
Awp-content/debug.log
Bwp-content/error.txt
Cwp-config.php
Dindex.php
Why should WP_DEBUG be off on live sites?
ATo enable caching
BTo speed up the site theme loading
CTo avoid showing sensitive error details to visitors
DTo allow plugin updates
Which of these is NOT a WP_DEBUG related constant?
AWP_DEBUG_THEME
BWP_DEBUG_LOG
CWP_DEBUG
DWP_DEBUG_DISPLAY
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.