Site logo

Archived topic

Random tags after posts and in archive pages

5 replies · Started by Maziar on June 10, 2017

Viewing posts 1–6 of 6

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);
}

Ok thanks

No problem!

This archived topic is closed to new replies.