Changeset 6616
- Timestamp:
- 01/14/2008 10:35:43 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.