Skip to content

Instantly share code, notes, and snippets.

@mateusreis
Created January 18, 2013 00:13
Show Gist options
  • Save mateusreis/4561146 to your computer and use it in GitHub Desktop.
Save mateusreis/4561146 to your computer and use it in GitHub Desktop.
Wordpress display number of queries
function wpshow_footer_queries(){
echo '<!-- Queries: '.get_num_queries().' in '.timer_stop(0).' seconds. -->'.PHP_EOL;
}
add_action('wp_footer', 'wpshow_footer_queries');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment