显示WordPress页面查询次数、加载时间和内存占用将下面代码添加到当前主题的 functions.php 文件中:
//显示页面查询次数、加载时间和内存占用
function performance( $visible = false ) {
$stat = sprintf( '%d 次查询 耗时 %.3f seconds, 使用 %.2fMB 内存',
get_num_queries(),
timer_stop( 0, 3 ),
memory_get_peak_usage() / 1024 / 1024
);
echo $visible ? $stat : "<!-- {$stat} -->" ;
}
Code language: PHP (php)
然后在需要显示的地方,使用下面的代码进行调用:
performance的参数 ture 表示在页面前端显示。如果你想在页面中不显示,只在html源码中可见可改为 false。
了解 Starx's Home 的更多信息
Subscribe to get the latest posts sent to your email.
0 条评论