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
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);