あるユーザーから、他のサイトではフッターにクエリー数やページ読み込み時間をどのように表示しているのかという質問がありました。サイトのフッターにはよくこのような表示があります:「64クエリー、1.248秒 “といった具合です。この投稿では、WordPressでクエリー数とページ読み込み時間を表示する方法を紹介します。
以下のコードをテーマファイル(footer.phpなど)の好きな場所に貼り付けるだけです。
[cbk1]
そしてページを更新してください。クエリー数と実行時間が表示されます。
あるユーザーから、他のサイトではフッターにクエリー数やページ読み込み時間をどのように表示しているのかという質問がありました。サイトのフッターにはよくこのような表示があります:「64クエリー、1.248秒 “といった具合です。この投稿では、WordPressでクエリー数とページ読み込み時間を表示する方法を紹介します。
以下のコードをテーマファイル(footer.phpなど)の好きな場所に貼り付けるだけです。
[cbk1]
そしてページを更新してください。クエリー数と実行時間が表示されます。
情報開示 私たちのコンテンツは読者支援型です。これは、あなたが私たちのリンクの一部をクリックした場合、私たちはコミッションを得ることができることを意味します。 WPBeginnerの資金源 をご覧ください。3$編集プロセスをご覧ください。
Pattrick
How can i display only the load Time ?
WPBeginner Support
You would move the echo to after the get_num_queries
管理者
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.
管理者
Thoriq
It’s so simple, thanks for sharing this tip.