I need to display all tags for future posts (e.g for a events). I tried with arrays in wp_tag_cloud function, but it’s not working.
wp_tag_cloud(array('post_status' => 'future'));
I tried few more things, but it seems like there is no solution in easy way to display for future posts. Thanks for the any hint.
I remember seeing this issue somewhere. In fact, they ended up doing it all by hand. Would be something like:
You’ll probably want to write a compare function to use with
array_usortto order the$tagsarray alphabetically or by tag count.Hope it helps.