Skip to content

Instantly share code, notes, and snippets.

@ngearing
Created February 21, 2018 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ngearing/dea225149397b2371bf3a177a919264d to your computer and use it in GitHub Desktop.
Save ngearing/dea225149397b2371bf3a177a919264d to your computer and use it in GitHub Desktop.
List the current queue of styles and scripts for WordPress
<?php
global $wp_styles;
global $wp_scripts;
echo '<pre>' . print_r( $wp_styles->queue, true ) . '</pre>';
echo '<pre>' . print_r( $wp_scripts->queue, true ) . '</pre>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment