Changeset 12009 for trunk/wp-includes/category-template.php
- Timestamp:
- 10/08/2009 05:05:32 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/category-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/category-template.php
r11981 r12009 675 675 $a = array(); 676 676 677 $rel = ( is_object( $wp_rewrite ) && $wp_rewrite->using_permalinks() ) ? ' rel="tag"' : '';678 679 677 foreach ( $tags as $key => $tag ) { 680 678 $count = $counts[ $key ]; … … 683 681 $tag_id = isset($tags[ $key ]->id) ? $tags[ $key ]->id : $key; 684 682 $tag_name = $tags[ $key ]->name; 685 $a[] = "<a href='$tag_link' class='tag-link-$tag_id' title='" . esc_attr( $topic_count_text_callback( $real_count ) ) . "' $relstyle='font-size: " .683 $a[] = "<a href='$tag_link' class='tag-link-$tag_id' title='" . esc_attr( $topic_count_text_callback( $real_count ) ) . "' style='font-size: " . 686 684 ( $smallest + ( ( $count - $min_count ) * $font_step ) ) 687 685 . "$unit;'>$tag_name</a>";
Note: See TracChangeset
for help on using the changeset viewer.