我希望将WP_Query输出到数组。例如,我最近10个帖子标题的数组或最后发布网址的数组
答案 0 :(得分:1)
如果您想将WP_Query()
的结果收集到另一个数组中,可以试试这个:
$my_array=array();
// the query
$args=array('post_type' => 'post','posts_per_page'=>10,'orderby'=>'date', 'order'=>'ASC');
$my_query = new WP_Query($args);
if ($my_query->have_posts()) :
while ($my_query->have_posts()) : $my_query->the_post();
$my_array[]=get_the_title(get_the_ID());
endwhile;
endif;
// debug:
print_r($my_array);
print_r($my_query);
此示例将为您提供数组$my_array()