WordPress显示数据库查询次数、页面php执行时间、页面PHP消耗的内存大小

以下文件加入主题function.php文件中

1
2
3
4
5
6
7
8
9
//显示页面查询次数、加载时间和内存占用
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} -->" ;
}

在需要显示的地方加入以下代码调用

1
<?php if(function_exists('performance')) performance(false) ;?>

performance的参数 false 表示在页面前端不显示,只在html源码中可见,如本文配图。如果你想在页面中直接显示,可改为 ture
如果你想在页脚加载,可以将下面的代码添加到 functions.php 该函数的下面(确保你的主题文件中包含 wp_footer() ):

1
add_action( 'wp_footer', 'performance', 20 );
原文链接:https://xiaohost.com/10684.html,转载请注明出处。
0

评论0

请先