How to get all enqueue scripts in WordPress?
Copy this code and paste to your functions.php
function wpa54064_inspect_scripts() { global $wp_scripts; print_r($wp_scripts); // this will show all enqueue's script } add_action( 'wp_head', 'wpa54064_inspect_scripts' );