Un de nos utilisateurs/utilisatrices nous a demandé comment d’autres sites affichent le nombre de requêtes et le temps de chargement des pages dans le pied de page. Vous verrez souvent cela dans le pied de page des sites et cela peut dire quelque chose comme : « 64 requêtes en 1,248 secondes ». Dans cet article, nous allons vous montrer comment afficher le nombre de requêtes et le temps de chargement des pages dans WordPress.
Il suffit de coller le code suivant où vous le souhaitez dans les fichiers de votre thème (comme footer.php).
<?php echo get_num_queries(); ?> queries in <?php timer_stop(1); ?> seconds.
Et actualisez la page. Vous verrez le nombre de requêtes et le temps d’exécution.
Syed Balkhi
Hey WPBeginner readers,
Did you know you can win exciting prizes by commenting on WPBeginner?
Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
You can get more details about the contest from here.
Start sharing your thoughts below to stand a chance to win!
Pattrick
How can i display only the load Time ?
WPBeginner Support
You would move the echo to after the get_num_queries
Administrateur
Aidan
You should make clear that the timer_stop() function only measures page load time, not how long the queries take to complete.
These are often related, but the way you present the code makes it look like the queries are always related to the speed issues, and often they aren’t.
Sean Donovan
It would be useful to know what a typical number of queries are for a Wordpress site running 10 or so plugins…
Editorial Staff
Can’t say at all because each plugin varies. You can use 10 plugins that work entirely in the backend which will add no queries on the front-end load. Or 10 really horrible coded plugins that can add tons of queries on the front-end.
Administrateur
Thoriq
It’s so simple, thanks for sharing this tip.