Un utente ci ha chiesto come fanno altri siti a mostrare il numero di query e il tempo di caricamento della pagina nel footer. Spesso si può vedere questo dato nel footer dei siti, con una dicitura del tipo: “64 query in 1,248 secondi”. In questo articolo vi mostreremo come mostrare il numero di query e il tempo di caricamento della pagina in WordPress.
È sufficiente incollare il seguente codice in un punto qualsiasi dei file del tema (ad esempio footer.php).
<?php echo get_num_queries(); ?> queries in <?php timer_stop(1); ?> seconds.
E ricaricare la pagina. Verranno visualizzati il numero di query e il tempo di esecuzione.
Pattrick
How can i display only the load Time ?
WPBeginner Support
You would move the echo to after the get_num_queries
Admin
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.
Admin
Thoriq
It’s so simple, thanks for sharing this tip.