This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wp_print_scripts', '_list_enqueued_scripts_and_styles' ); | |
function _list_enqueued_scripts_and_styles() { | |
global $wp_scripts, $wp_styles; | |
$scripts_list = ''; | |
$styles_list = ''; | |
// Runs through the queue scripts | |
foreach( $wp_scripts->queue as $handle ) : | |
$scripts_list .= $handle.' - '.$wp_scripts->registered[$handle]->src . ' <br> '; |