Skip to content

Instantly share code, notes, and snippets.

@flymke
Created August 20, 2019 11:05
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 flymke/fa7f49a506188a2b3e03fb44a9a7c693 to your computer and use it in GitHub Desktop.
Save flymke/fa7f49a506188a2b3e03fb44a9a7c693 to your computer and use it in GitHub Desktop.
Find out file handles in WordPress
<?php
add_action( 'wp_head', 'check_jquery' );
add_action( 'admin_head', 'check_jquery' );
function check_jquery() {
global $wp_scripts;
global $wp_styles;
//foreach ( $wp_scripts->registered as $wp_script ) {
// $handles[] = $wp_script->handle;
//}
foreach ( $wp_styles->registered as $wp_script ) {
$handles[] = $wp_script->handle;
}
print_r($handles);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment