Wordpress Orderby兰德没有工作

时间:2013-02-08 10:32:24

标签: php wordpress

remove_all_filters('posts_orderby');
$args = array(
    'post_type' => 'attachment',
    'numberposts' => 6,
    'orderby' => 'rand',
    'exclude' => get_post_thumbnail_id(),
    'post_parent' => $post->ID
);

有人可以向我解释为什么'orderby' => 'rand'部分不起作用吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

找到它。我需要将'order' => 'post_date',添加到$args。谢谢@BenM的帮助!