I want to show random posts on enfold theme everywhere
on categories
on home page magazine (enfold advanced editor)
On search
I mean everywhere – random results.
I checked here https://kriesi.at/support/topic/search-results-random-order/ but this didnt help me
bump
please help what to insert in functions.php of child theme
Hi,
What is the code you have added on your functions.php?
Best regards,
Basilis
i have not added anything as yet. i need code from you
Hi simran1982,
Please have a look at this article here
https://www.wpbeginner.com/wp-tutorials/how-to-display-random-posts-in-wordpress/
Best regards,
Victoria
Thanks for reply. But I don’t want a short code to show widgets. I want all categories and tags, blog etc to always show random posts rather than date wise posts which wordpress shows by default. Request you to provide that code for enfold theme.
Hi,
Try adding this code to the end of your functions.php file in Appearance > Editor:
add_filter('avia_post_slide_query','avia_order_by_random', 10, 2);
function avia_order_by_random($query, $params)
{
$query['orderby'] = 'title';
$query['order'] = 'rand';
$terms = explode(',', $params['categories']);
if (!empty($terms) && in_array(1, $terms))
{
$query['orderby'] = 'date';
}
return $query;
}
Best regards,
Mike
Amazing
the code works
thanks a lot @mike
Hi simran1982,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
Victoria