Opened 18 years ago
Closed 18 years ago
#5726 closed enhancement (fixed)
Random order argument/Hook in wp_tag_cloud()
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | 2.5 | Priority: | normal |
| Severity: | normal | Version: | |
| Component: | General | Keywords: | has-patch |
| Focuses: | Cc: |
Description
wp_tag_cloud currently accepts 2 'order' arguments: DESC & ASC.
This patch adds 'RAND' capabilities to randomize the order of the tag cloud or list.
Can prevent large font face tags from being next to each other when the user doesn't necessarily want to sort the tags alphabetically.
Usage:
<?php wp_tag_cloud('order=RAND'); ?>
Attachments (2)
Change History (5)
Note: See
TracTickets for help on using
tickets.
Another option is to make it pluggable. As it stands now, there is no way to hook into the $counts array between the time it is created and when the html is processed. This may have more uses beyond just reordering the array.
Patch provided.