我正在使用WP_Query()
在特定类别“特色”下抽出几个帖子,显示在任何帖子的底部。
所以我补充道<?php if (function_exists(\'getEditorPicks\')) getEditorPicks();?>
单件。php。
在函数中。php,我有
wp_reset_postdata();
$args = array(\'cat\' => 4176, \'posts_per_page\' => 5);
$query = new WP_Query($args);
//return $query->query_vars;
if ($query->post_count>2) {
while ($query->have_posts()) {
$query->the_post;
echo the_title();
}
}
wp_reset_postdata();
然而,现在加载页面需要很长时间,最终只会耗尽内存。
我错过了什么?