Skip to content

Instantly share code, notes, and snippets.

@sabrysuleiman
Last active September 7, 2019 23:22
Show Gist options
  • Save sabrysuleiman/e5ab28157d6d686350194dc1e471572f to your computer and use it in GitHub Desktop.
Save sabrysuleiman/e5ab28157d6d686350194dc1e471572f to your computer and use it in GitHub Desktop.
<?php
$scripts = wp_scripts();
echo '<pre>';
print_r( $scripts );
echo '</pre><hr>';
$styles = wp_styles();
echo '<pre>';
print_r( $styles );
echo '</pre><hr>';
global $wp_filter;
echo '<pre>';
var_dump( $wp_filter['wp_head'] );
echo '</pre><hr>';
global $wp_filter;
echo '<pre>';
var_dump( $wp_filter['wp_footer'] );
echo '</pre>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment