Archived topic
Random tags after posts and in archive pages
5 replies · Started by Maziar on June 10, 2017
Hi,
I have enabled the option to show tags at the end posts and in archive pages. I am also using a bit of code to limit the number of tags shown to only 5. The thing is that since tags are shown alphabetically I keep showing the same 5 over and over.
Are there any ways of randomizing the order of tags shown at the end of the post and in archive pages?
Thanks
What's the code you're using to limit them?
add_filter('term_links-post_tag','limit_to_five_tags');
function limit_to_five_tags($terms) {
return array_slice($terms,0,5,true);
}
Hmm, looked into this a bit and I'm not sure it's possible.
You might find an answer by posting on https://wordpress.stackexchange.com/.
Ok thanks
No problem!