Changeset 13282
- Timestamp:
- 02/21/2010 11:02:14 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r13256 r13282 470 470 } 471 471 472 $count = ( $count > 0 ) ? "<a href='edit.php?$tagsel=$tag->slug&post_type=$post_type'>$count</a>" : $count;473 474 472 $pad = str_repeat( '— ', max(0, $level) ); 475 473 $name = apply_filters( 'term_name', $pad . ' ' . $tag->name, $tag ); … … 535 533 case 'posts': 536 534 $attributes = 'class="posts column-posts num"' . $style; 537 $out .= "<td $attributes> $count</td>";535 $out .= "<td $attributes><a href='edit.php?$tagsel=$tag->slug&post_type=$post_type'>$count</a></td>"; 538 536 break; 539 537 default:
Note: See TracChangeset
for help on using the changeset viewer.