Link Links columns to link manager. Props nacin. fixes #15994

git-svn-id: https://develop.svn.wordpress.org/trunk@17159 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-12-27 16:57:19 +00:00
parent 2fee9b3e7f
commit b6ff912589
1 changed files with 2 additions and 0 deletions

View File

@ -303,6 +303,8 @@ class WP_Terms_List_Table extends WP_List_Table {
function column_links( $tag ) {
$count = number_format_i18n( $tag->count );
if ( $count )
$count = "<a href='link-manager.php?cat_id=$tag->term_id'>$count</a>";
return $count;
}