主题

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 ....

Wordpress教程

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

为WordPress添加显示文章图片、文字个数和阅读时间功能
1569字

本教程根据网络整合并在本站应用后得出。 首先在网站模板的functions.php中添加以下代码: //字数、图片个数和预计阅读时间统计 function count_words_img_read_time () { global $post; $content = $post->post_content; preg_matc ....