Skip to content

Instantly share code, notes, and snippets.

@yumyo
Created October 21, 2016 14:11
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 yumyo/96cd15aad32cb2a26c7ac8537a248104 to your computer and use it in GitHub Desktop.
Save yumyo/96cd15aad32cb2a26c7ac8537a248104 to your computer and use it in GitHub Desktop.
Log all php includes in WordPress
/*
SHUTDOWN LOG INCLUDED FILES
========================================================================== */
add_action( 'shutdown', __NAMESPACE__ . '\\my_shutdown_callback' );
function my_shutdown_callback() {
$included_files = get_included_files();
foreach ($included_files as $filename) {
error_log("$filename\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment