MRX.LAFuck the Rules!

在wordpress页脚显示数据库查询和页面加载时间

后台编辑主题的functions.php文件,添加如下代码:

//页面请求次数及打开时间自动检测
function wp_page_speed() {
date_default_timezone_set( get_option( ’timezone_string’ ) );
$content .= ’页面加载时间’;
$content .= timer_stop( $display = 0, $precision = 2 );
$content .= ’ s’;
echo $content;
}

阅读全文 →