Skip to content

Instantly share code, notes, and snippets.

@X-Raym
Created March 17, 2016 10:50
Show Gist options
  • Save X-Raym/d4ce57f67d40fccdf908 to your computer and use it in GitHub Desktop.
Save X-Raym/d4ce57f67d40fccdf908 to your computer and use it in GitHub Desktop.
WordPress inspect styles and scripts
<?php
function inspect_scripts() {
if (!is_admin()) {
global $wp_scripts, $wp_styles;
echo '<h1>Scripts</h1>';
echo '<ol>';
foreach( $wp_scripts->queue as $handle ) :
echo '<li>' . $handle . '</li>';
endforeach;
echo '</ol>';
echo '<hr/>';
echo '<h1>Styles</h1>';
echo '<ol>';
foreach( $wp_styles->queue as $handle ) :
echo '<li>' . $handle . '</li>';
endforeach;
echo '</ol>';
}
}
add_action( 'wp_print_scripts', 'inspect_scripts', PHP_INT_MAX );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment