方法很简单,把这段代码放到主题 functions.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} -->" ;
}
add_action( 'wp_footer', 'performance', 20 );
这段代码是通过 wp_footer
这个 Hook 挂在到底部的,使用之前,确保你使用的WordPress主题的 footer.php 文件里面包含这个 hook。