以下文件加入主题 function.php 文件中
//显示页面查询次数、加载时间和内存占用
function performance( $visible = false ) {
$stat = sprintf( '%d queries in %.3f seconds, using %.2fMB memory',
get_num_queries(),
timer_stop( 0, 3 ),
memory_get_peak_usage() / 1024 / 1024
);
echo $visible ? $stat : "<!-- {$stat} -->" ;
}
function performance( $visible = false ) {
$stat = sprintf( '%d queries in %.3f seconds, using %.2fMB memory',
get_num_queries(),
timer_stop( 0, 3 ),
memory_get_peak_usage() / 1024 / 1024
);
echo $visible ? $stat : "<!-- {$stat} -->" ;
}
在需要显示的地方加入以下代码调用
<?php if(function_exists('performance')) performance(false) ;?>
performance 的参数 false 表示在页面前端不显示,只在 html 源码中可见,如本文配图。如果你想在页面中直接显示,可改为 ture
如果你想在页脚加载,可以将下面的代码添加到 functions.php 该函数的下面 (确保你的主题文件中包含 wp_footer()):
add_action( 'wp_footer', 'performance', 20 );