WordPress开启调试模式

文章描述:

Wordpress显示页面执行了多少SQL语句和查询时间以及消耗的内存

自定义

functions.php

function performance( $visible = true ) {
    $stat = sprintf(  '%d 次查询 | 用时 %.3f 秒 | 消耗 %.2fMB 内存',
        get_num_queries(),
        timer_stop( 0, 3 ),
        memory_get_peak_usage() / 1024 / 1024
    );
    echo $visible ? $stat : "<!-- {$stat} -->" ;
}

 

主题

footer.php

<?php if(function_exists('performance')) performance(true) ;?>
发布时间:2021/07/16

发表评论