2022年7月18日

Wordpress教程

Warning: Undefined variable $output in /www/wwwroot/maoshuai.cn/wp-content/themes/leopard/functions.php on line 56

Wordpress添加显示页面加载时间、消耗内存、数据库查询次数代码
173字

显示效果如下: 只需在Wordpress主题的footer.php文件中添加如下代码 页面生成用时<?php timer_stop(1); ?>秒,SQL查询<?php echo get_num_queries(); ?>次,内存<?php echo memory_get_peak_usage()/10 ....