Add beginnings of bulk tag delete. see #5684

git-svn-id: https://develop.svn.wordpress.org/trunk@6727 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2008-02-05 07:45:40 +00:00
parent 3a18b96c9b
commit b1d7aea363
3 changed files with 27 additions and 5 deletions

View File

@@ -242,6 +242,7 @@ function _tag_row( $tag, $class = '' ) {
$out = '';
$out .= '<tr id="tag-' . $tag->term_id . '"' . $class . '>';
$out .= '<td style="text-align: center"> <input type="checkbox" name="delete_tags[]" value="' . $tag->term_id . '" /></td>';
$out .= '<th scope="row">' . $tag->term_id . '</th>';
$out .= '<td>' . apply_filters( 'term_name', $tag->name ) . '</td>';