Changeset 11450 for trunk/wp-includes/category-template.php
- Timestamp:
- 05/24/2009 11:47:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/category-template.php
r11428 r11450 576 576 * The 'tag_cloud_sort' filter allows you to override the sorting done 577 577 * by the 'orderby' argument; passed to the filter: $tags array and $args array. 578 * 578 * 579 579 * The 'orderby' argument will accept 'name' or 'count' and defaults to 'name'. 580 580 * The 'order' is the direction to sort, defaults to 'ASC' and can be 'DESC' or … … 624 624 625 625 $tags = apply_filters( 'tag_cloud_sort', $tags, $args ); 626 626 627 627 if ( 'DESC' == $order ) 628 628 $tags = array_reverse( $tags, true );
Note: See TracChangeset
for help on using the changeset viewer.