Guest User

Untitled

a guest
Oct 16th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. function performance( $visible = false ) {
  4.  
  5. $stat = sprintf( '%d queries in %.3f seconds, using %.2fMB memory',
  6. get_num_queries(),
  7. timer_stop( 0, 3 ),
  8. memory_get_peak_usage() / 1024 / 1024
  9. );
  10.  
  11. echo $visible ? $stat : "<!-- {$stat} -->" ;
  12. }
  13. add_action( 'wp_footer', 'performance', 20 );
  14.  
  15. ?>
Add Comment
Please, Sign In to add comment