我的Wordpress博客中有很多帖子。
这些帖子很长,没有<!--more-->
。
所以我必须使用the_excerpt()函数自动创建post的摘录。
但时间成本太长了。
我使用大约8秒钟渲染前十个帖子。
我尝试打印the_excerpt()执行时间,如下所示。
<div class="description">
<?php timer_start(); ?>
<?php the_excerpt(); ?>
<?php echo timer_stop(); ?>
</div>
时间在0.8s~2s之间。
太奇怪了......
那么如何提高页面渲染的速度呢?
谢谢大家!