Make WordPress Core


Ignore:
Timestamp:
05/24/2009 11:47:49 PM (16 years ago)
Author:
ryan
Message:

Trim tailing whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/category-template.php

    r11428 r11450  
    576576 * The 'tag_cloud_sort' filter allows you to override the sorting done
    577577 * by the 'orderby' argument; passed to the filter: $tags array and $args array.
    578  * 
     578 *
    579579 * The 'orderby' argument will accept 'name' or 'count' and defaults to 'name'.
    580580 * The 'order' is the direction to sort, defaults to 'ASC' and can be 'DESC' or
     
    624624
    625625        $tags = apply_filters( 'tag_cloud_sort', $tags, $args );
    626    
     626
    627627    if ( 'DESC' == $order )
    628628        $tags = array_reverse( $tags, true );
Note: See TracChangeset for help on using the changeset viewer.