0

我想将 WP_Query 输出到一个数组。例如我最近 10 个帖子标题的数组或最后一个帖子 url 的数组

4

1 回答 1

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);

这个例子会给你最后10个帖子标题到数组中$my_array()

于 2013-02-16T13:48:09.383 回答