Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /*
  2. SHUTDOWN LOG INCLUDED FILES
  3. ========================================================================== */
  4.  
  5. add_action( 'shutdown', __NAMESPACE__ . '\\my_shutdown_callback' );
  6.  
  7. function my_shutdown_callback() {
  8. $included_files = get_included_files();
  9. foreach ($included_files as $filename) {
  10. error_log("$filename\n");
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement