Changeset 6616
- Timestamp:
- 01/14/08 22:35:43 (8 months ago)
- Files:
-
- trunk/wp-includes/category-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/category-template.php
r6595 r6616 322 322 323 323 $return = wp_generate_tag_cloud( $tags, $args ); // Here's where those top tags get sorted according to $args 324 324 325 if ( is_wp_error( $return ) ) 325 326 return false; 326 else 327 echo apply_filters( 'wp_tag_cloud', $return, $args ); 327 328 $return = apply_filters( 'wp_tag_cloud', $return, $args ); 329 330 if ( 'array' == $args['format'] ) 331 return $return; 332 333 echo $return; 328 334 } 329 335
