Jeden z naszych użytkowników zapytał, w jaki sposób inne witryny pokazują liczbę zapytań i czas wczytywania strony w stopce. Często można to zobaczyć w stopce witryn i może to być coś w stylu: „64 zapytania w 1,248 sekundy”. W tym artykule pokażemy, jak wyświetlić liczbę zapytań i czas wczytywania strony w WordPress.
Wystarczy wkleić poniższy kod w dowolnym miejscu w plikach twojego motywu (np. footer.php).
<?php echo get_num_queries(); ?> queries in <?php timer_stop(1); ?> seconds.
.
I odświeżyć stronę. Zobaczysz liczbę zapytań i czas wykonania.
Pattrick
How can i display only the load Time ?
WPBeginner Support
You would move the echo to after the get_num_queries
Administrator
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.
Administrator
Thoriq
It’s so simple, thanks for sharing this tip.