Get random terms
Question
Is it possible to get random terms? To get random posts you could use WP_Query
and set 'orderby' => 'rand'
.
But is there any way to do that with terms?
I’ve tried this:
$terms = get_terms( array(
'taxonomy' => 'webshops',
'hide_empty' => false,
'orderby' => 'rand',
'number' => 6
) );
0
terms, wp-query
6 years
2017-06-14T09:17:41-05:00
2017-06-14T09:17:41-05:00 0 Answers
62 views
0
Leave an answer