Skip to content

Instantly share code, notes, and snippets.

@harrilehtisaari
Created August 30, 2016 06:36
Show Gist options
  • Select an option

  • Save harrilehtisaari/fbb89d1e03b53042db64d1358654ec9a to your computer and use it in GitHub Desktop.

Select an option

Save harrilehtisaari/fbb89d1e03b53042db64d1358654ec9a to your computer and use it in GitHub Desktop.
function theme_mysql_queries () {
echo '<!-- ';
echo get_num_queries();
echo ' queries in ';
timer_stop(1);
echo ' seconds.-->';
}
add_action ( 'wp_footer','theme_mysql_queries', 999 );
add_action ( 'wp_after_admin_bar_render','theme_mysql_queries', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment