我使用以下查询:
<?php $postslist = new WP_Query('meta_key=Ordermetakey&orderby=meta_value_num&order=DESC&posts_per_page=5');
要在首页上对小帖子列表进行排序,以显示最新的新帖子。它需要通过元键对它们进行排序并执行此DESC。奇怪的是它显示了ASC的帖子,即使我已将ASC放入此查询中。
元键的值是日期 - 时间戳: 示例:120403 = 03-04-2012
我怎样才能让它发挥作用?
答案 0 :(得分:0)
<?php if ( is_home() ) ;?>
<?php
$recentposts=get_posts('showposts=5');
if ($recentposts) {
foreach($recentposts as $post) {
setup_postdata($post);
?>
<p><?php the_time('m.d.y') ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to
<?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
}
}
?>
<?php endif; ?>