Changeset 47122 for trunk/src/wp-includes/category-template.php
- Timestamp:
- 01/29/2020 12:43:23 AM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/category-template.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-template.php
r47103 r47122 707 707 ) 708 708 ) 709 ); // Always query top tags 709 ); // Always query top tags. 710 710 711 711 if ( empty( $tags ) || is_wp_error( $tags ) ) { … … 728 728 } 729 729 730 $return = wp_generate_tag_cloud( $tags, $args ); // Here's where those top tags get sorted according to $args 730 // Here's where those top tags get sorted according to $args. 731 $return = wp_generate_tag_cloud( $tags, $args ); 731 732 732 733 /** … … 890 891 891 892 $counts = array(); 892 $real_counts = array(); // For the alt tag 893 $real_counts = array(); // For the alt tag. 893 894 foreach ( (array) $tags as $key => $tag ) { 894 895 $real_counts[ $key ] = $tag->count; … … 1054 1055 1055 1056 // 1056 // Helper functions 1057 // Helper functions. 1057 1058 // 1058 1059 … … 1104 1105 1105 1106 // 1106 // Tags 1107 // Tags. 1107 1108 // 1108 1109
Note: See TracChangeset
for help on using the changeset viewer.