I have this code that returns list of post title as links, but when I add the ‘orderby’ and ‘order’ parameters – it returns results but ‘orderby, order, rand’ do not work, can anyone tell me what I’m doing wrong? Thanks!
<ul>
<?php $post; $cat_posts = get_posts(array('numberposts' => 10, 'orderby' => 'rand', 'order' => ASC, 'category' => $disciplineCatID));
foreach($cat_posts as $post) : ?>
<?php $postTitle = get_the_title(); if($title != $postTitle) :?>
<li><a href="<?php the_permalink(); ?>">›› <?php the_title(); ?></a></li>
<?php endif ;?>
<?php endforeach; ?>
</ul>
Yes, this is the correct syntax:
However plugins can keep this from working properly. Try disabling ALL plugins and see if that helps. Two known plugins which keep
orderby=rand
from working arePost Type Order
andWP_Sticky
Also, if you have Post Types order installed make sure you visit the Admin page and check the settings. You can use this plugin and keep it from automatically re-ordering posts:
http://img829.imageshack.us/img829/2616/pictureot.png
And then you can use the code for Post Types Order to specifically order those posts in places where you need them to be ordered via the custom/menu-order. Here is the example code for that plugin:
The following PHP code will still return the post in the set-up Order:
Or:
If the Auto Sort is uncheck you will need to use the “orderby” and “order” parameters:
If you’re hosted on WP Engine, you need to manually enable random ordering in your settings or else
'orderby' => 'rand'
won’t work.https://wpexplorer-themes.com/total/docs/random-order-wpengine/
Why don’t you try to use query_posts instead?
Something like:
try this code
got the answer from here
http://www.reinaris.nl/wp/wordpress-random-post-order-not-working-orderbyrand/
You probably forgot to
setup_postdata
inside yourforeach
loop to get template tags to work.I ran into the same problem, and luckily found this thread. I tried a different fix, probably dirtier than the others, but maybe useful in some cases.
Basically, I shuffled the posts before outputting them:
If you have wp-engine in your WordPress site check the ALLOW ORDER BY RAND() option. See an article here: https://wpengine.co.uk/support/about-order-by-rand/