A lot of WP JS is minified and therefore it’s hard to be analyzed in the Console. Is there any way to have all scripts uncompressed?

1 Answer
1

Yes there is, from Debugging in WordPress codex, you need to define SCRIPT_DEBUG in wp-config.php to force WP to load the dev versions of the scripts:

define('SCRIPT_DEBUG', true);

Leave a Reply

Your email address will not be published. Required fields are marked *