我在wordpress中使用ajax。但在通过ajax查询函数时,我只收到了一篇帖子。
这是我的代码:
$args = array(
\'post_type\' => \'post\',
\'posts_per_page\' => -1,
\'order\' => \'DESC\',
);
$posts = new WP_Query($args);
if($posts->have_posts()){
while ($posts->have_posts()) {
$posts->the_post();
$output = get_the_title();
}
}wp_reset_postdata();
wp_send_json( $output );
在控制台日志中,im仅获取lastpost标题:(