Skip to content

Instantly share code, notes, and snippets.

@dz0ny
Forked from BigWhale/wp-mem-usage.php
Created September 27, 2017 15:54
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 dz0ny/5546e9b5e97c0b66261a362c56418fa0 to your computer and use it in GitHub Desktop.
Save dz0ny/5546e9b5e97c0b66261a362c56418fa0 to your computer and use it in GitHub Desktop.
WordPress theme memory usage
add_action( 'shutdown', 'do_shutdown', 999);
function do_shutdown() {
$f = fopen('/tmp/memory_usage.txt', 'a+');
$usage = memory_get_peak_usage( true );
fwrite( $f, $usage / 1024 / 1024 . " MB\n" );
fclose( $f );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment