我使用以下代码生成JSON提要。我需要从帖子中提取摘录,但运行get\\u the\\u extract()需要28秒(是秒!)在本地服务器上运行,而将get\\u the\\u extract()更改为“hi”时为599毫秒。
有人知道为什么要花这么长时间吗?我能做些什么来加快加载速度?这是在我使用的计算机上的本地web服务器上,因此不是由于网络问题。
$json = array();
while ( have_posts() ) {
the_post();
$yo = array(\'title\' => get_the_title(), \'excerpt\' => get_the_excerpt());
}
$json[] = $yo;
$json = json_encode($json);