Ticket #27413: 27413.2.patch
File 27413.2.patch, 749 bytes (added by , 11 years ago) |
---|
-
src/wp-includes/category-template.php
622 622 $args = wp_parse_args( $args, $defaults ); 623 623 extract( $args, EXTR_SKIP ); 624 624 625 if ( empty( $tags ) ) 625 if ( empty( $tags ) ) { 626 626 return; 627 } 627 628 628 629 // Juggle topic count tooltips: 629 630 if ( isset( $args['topic_count_text'] ) ) { … … 645 646 } 646 647 647 648 $tags_sorted = apply_filters( 'tag_cloud_sort', $tags, $args ); 649 650 if ( empty( $tags_sorted ) ) { 651 return; 652 } 653 648 654 if ( $tags_sorted != $tags ) { // the tags have been sorted by a plugin 649 655 $tags = $tags_sorted; 650 656 unset($tags_sorted);