我正在显示自定义帖子类型“show”的最后5篇帖子。
这给了我最新的帖子。
<?php
$args = array(
\'post_type\' => \'show\',
\'posts_per_page\' => 5,
\'order\' => \'DESC\'
);
$home_shows = new WP_Query($args);
var_dump($home_shows);
?>
我需要的是,首先是最早的(最新的一系列节目),最后是最新的(最新的一系列节目)。
我现在正在获取(通过自定义字段元值获取显示日期):
2012年3月11日、2012年3月7日、2012年3月4日、2012年3月2日、2012年2月30日等。
我需要:2012年2月30日,2012年3月1日,2012年3月4日,2012年3月7日,2012年3月11日,
我试着像这样使用php的array\\u reverse(添加到上述代码中):
$reversed_shows = array_reverse( $home_shows->posts );
这给了我非常奇怪的结果(显示帖子的完全不同部分,数组顺序被关闭)。
有什么想法吗?