1、将下列代码加入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 : "" ;
}
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 : "" ;
}
2、在主题页脚(footer.php)函数中,添加调用方法:
<?php if(function_exists('performance')) performance(true) ;?>