ggdx
ggdx

Reputation: 3064

Wordpress Orderby rand not working

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

Can someone please explain to me why the 'orderby' => 'rand' part is not working?

Thanks!

Dan

Upvotes: 0

Views: 1577

Answers (1)

ggdx
ggdx

Reputation: 3064

Found it. I needed to add 'order' => 'post_date', to the $args. Thanks @BenM for your help!

Upvotes: 1

Related Questions