Created
August 30, 2016 06:36
-
-
Save harrilehtisaari/fbb89d1e03b53042db64d1358654ec9a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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