Created
January 18, 2013 00:13
-
-
Save mateusreis/4561146 to your computer and use it in GitHub Desktop.
Wordpress display number of queries
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 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