· 6 years ago · Jul 04, 2019, 12:52 PM
1<?php
2/**
3 * Edit Tags Administration Screen.
4 *
5 * @package WordPress
6 * @subpackage Administration
7 */
8
9/** WordPress Administration Bootstrap */
10require_once( dirname( __FILE__ ) . '/admin.php' );
11
12if ( ! $taxnow ) {
13 wp_die( __( 'Invalid taxonomy.' ) );
14}
15
16$tax = get_taxonomy( $taxnow );
17
18if ( ! $tax ) {
19 wp_die( __( 'Invalid taxonomy.' ) );
20}
21
22if ( ! in_array( $tax->name, get_taxonomies( array( 'show_ui' => true ) ) ) ) {
23 wp_die( __( 'Sorry, you are not allowed to edit terms in this taxonomy.' ) );
24}
25
26if ( ! current_user_can( $tax->cap->manage_terms ) ) {
27 wp_die(
28 '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
29 '<p>' . __( 'Sorry, you are not allowed to manage terms in this taxonomy.' ) . '</p>',
30 403
31 );
32}
33
34/**
35 * $post_type is set when the WP_Terms_List_Table instance is created
36 *
37 * @global string $post_type
38 */
39global $post_type;
40
41$wp_list_table = _get_list_table( 'WP_Terms_List_Table' );
42$pagenum = $wp_list_table->get_pagenum();
43
44$title = $tax->labels->name;
45
46if ( 'post' != $post_type ) {
47 $parent_file = ( 'attachment' == $post_type ) ? 'upload.php' : "edit.php?post_type=$post_type";
48 $submenu_file = "edit-tags.php?taxonomy=$taxonomy&post_type=$post_type";
49} elseif ( 'link_category' == $tax->name ) {
50 $parent_file = 'link-manager.php';
51 $submenu_file = 'edit-tags.php?taxonomy=link_category';
52} else {
53 $parent_file = 'edit.php';
54 $submenu_file = "edit-tags.php?taxonomy=$taxonomy";
55}
56
57add_screen_option(
58 'per_page',
59 array(
60 'default' => 20,
61 'option' => 'edit_' . $tax->name . '_per_page',
62 )
63);
64
65get_current_screen()->set_screen_reader_content(
66 array(
67 'heading_pagination' => $tax->labels->items_list_navigation,
68 'heading_list' => $tax->labels->items_list,
69 )
70);
71
72$location = false;
73$referer = wp_get_referer();
74if ( ! $referer ) { // For POST requests.
75 $referer = wp_unslash( $_SERVER['REQUEST_URI'] );
76}
77$referer = remove_query_arg( array( '_wp_http_referer', '_wpnonce', 'error', 'message', 'paged' ), $referer );
78switch ( $wp_list_table->current_action() ) {
79
80 case 'add-tag':
81 check_admin_referer( 'add-tag', '_wpnonce_add-tag' );
82
83 if ( ! current_user_can( $tax->cap->edit_terms ) ) {
84 wp_die(
85 '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
86 '<p>' . __( 'Sorry, you are not allowed to create terms in this taxonomy.' ) . '</p>',
87 403
88 );
89 }
90
91 $ret = wp_insert_term( $_POST['tag-name'], $taxonomy, $_POST );
92 if ( $ret && ! is_wp_error( $ret ) ) {
93 $location = add_query_arg( 'message', 1, $referer );
94 } else {
95 $location = add_query_arg(
96 array(
97 'error' => true,
98 'message' => 4,
99 ),
100 $referer
101 );
102 }
103
104 break;
105
106 case 'delete':
107 if ( ! isset( $_REQUEST['tag_ID'] ) ) {
108 break;
109 }
110
111 $tag_ID = (int) $_REQUEST['tag_ID'];
112 check_admin_referer( 'delete-tag_' . $tag_ID );
113
114 if ( ! current_user_can( 'delete_term', $tag_ID ) ) {
115 wp_die(
116 '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
117 '<p>' . __( 'Sorry, you are not allowed to delete this item.' ) . '</p>',
118 403
119 );
120 }
121
122 wp_delete_term( $tag_ID, $taxonomy );
123
124 $location = add_query_arg( 'message', 2, $referer );
125
126 // When deleting a term, prevent the action from redirecting back to a term that no longer exists.
127 $location = remove_query_arg( array( 'tag_ID', 'action' ), $location );
128
129 break;
130
131 case 'bulk-delete':
132 check_admin_referer( 'bulk-tags' );
133
134 if ( ! current_user_can( $tax->cap->delete_terms ) ) {
135 wp_die(
136 '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
137 '<p>' . __( 'Sorry, you are not allowed to delete these items.' ) . '</p>',
138 403
139 );
140 }
141
142 $tags = (array) $_REQUEST['delete_tags'];
143 foreach ( $tags as $tag_ID ) {
144 wp_delete_term( $tag_ID, $taxonomy );
145 }
146
147 $location = add_query_arg( 'message', 6, $referer );
148
149 break;
150
151 case 'edit':
152 if ( ! isset( $_REQUEST['tag_ID'] ) ) {
153 break;
154 }
155
156 $term_id = (int) $_REQUEST['tag_ID'];
157 $term = get_term( $term_id );
158
159 if ( ! $term instanceof WP_Term ) {
160 wp_die( __( 'You attempted to edit an item that doesn’t exist. Perhaps it was deleted?' ) );
161 }
162
163 wp_redirect( esc_url_raw( get_edit_term_link( $term_id, $taxonomy, $post_type ) ) );
164 exit;
165
166 case 'editedtag':
167 $tag_ID = (int) $_POST['tag_ID'];
168 check_admin_referer( 'update-tag_' . $tag_ID );
169
170 if ( ! current_user_can( 'edit_term', $tag_ID ) ) {
171 wp_die(
172 '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
173 '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>',
174 403
175 );
176 }
177
178 $tag = get_term( $tag_ID, $taxonomy );
179 if ( ! $tag ) {
180 wp_die( __( 'You attempted to edit an item that doesn’t exist. Perhaps it was deleted?' ) );
181 }
182
183 $ret = wp_update_term( $tag_ID, $taxonomy, $_POST );
184
185 if ( $ret && ! is_wp_error( $ret ) ) {
186 $location = add_query_arg( 'message', 3, $referer );
187 } else {
188 $location = add_query_arg(
189 array(
190 'error' => true,
191 'message' => 5,
192 ),
193 $referer
194 );
195 }
196 break;
197 default:
198 if ( ! $wp_list_table->current_action() || ! isset( $_REQUEST['delete_tags'] ) ) {
199 break;
200 }
201 check_admin_referer( 'bulk-tags' );
202 $tags = (array) $_REQUEST['delete_tags'];
203 /** This action is documented in wp-admin/edit-comments.php */
204 $location = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $location, $wp_list_table->current_action(), $tags );
205 break;
206}
207
208if ( ! $location && ! empty( $_REQUEST['_wp_http_referer'] ) ) {
209 $location = remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) );
210}
211
212if ( $location ) {
213 if ( $pagenum > 1 ) {
214 $location = add_query_arg( 'paged', $pagenum, $location ); // $pagenum takes care of $total_pages.
215 }
216
217 /**
218 * Filters the taxonomy redirect destination URL.
219 *
220 * @since 4.6.0
221 *
222 * @param string $location The destination URL.
223 * @param object $tax The taxonomy object.
224 */
225 wp_redirect( apply_filters( 'redirect_term_location', $location, $tax ) );
226 exit;
227}
228
229$wp_list_table->prepare_items();
230$total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
231
232if ( $pagenum > $total_pages && $total_pages > 0 ) {
233 wp_redirect( add_query_arg( 'paged', $total_pages ) );
234 exit;
235}
236
237wp_enqueue_script( 'admin-tags' );
238if ( current_user_can( $tax->cap->edit_terms ) ) {
239 wp_enqueue_script( 'inline-edit-tax' );
240}
241
242if ( 'category' == $taxonomy || 'link_category' == $taxonomy || 'post_tag' == $taxonomy ) {
243 $help = '';
244 if ( 'category' == $taxonomy ) {
245 $help = '<p>' . sprintf( __( 'You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your <a href="%s">writing settings</a>.' ), 'options-writing.php' ) . '</p>';
246 } elseif ( 'link_category' == $taxonomy ) {
247 $help = '<p>' . __( 'You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.' ) . '</p>';
248 } else {
249 $help = '<p>' . __( 'You can assign keywords to your posts using <strong>tags</strong>. Unlike categories, tags have no hierarchy, meaning there’s no relationship from one tag to another.' ) . '</p>';
250 }
251
252 if ( 'link_category' == $taxonomy ) {
253 $help .= '<p>' . __( 'You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.' ) . '</p>';
254 } else {
255 $help .= '<p>' . __( 'What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.' ) . '</p>';
256 }
257
258 get_current_screen()->add_help_tab(
259 array(
260 'id' => 'overview',
261 'title' => __( 'Overview' ),
262 'content' => $help,
263 )
264 );
265
266 if ( 'category' == $taxonomy || 'post_tag' == $taxonomy ) {
267 if ( 'category' == $taxonomy ) {
268 $help = '<p>' . __( 'When adding a new category on this screen, you’ll fill in the following fields:' ) . '</p>';
269 } else {
270 $help = '<p>' . __( 'When adding a new tag on this screen, you’ll fill in the following fields:' ) . '</p>';
271 }
272
273 $help .= '<ul>' .
274 '<li>' . __( '<strong>Name</strong> — The name is how it appears on your site.' ) . '</li>';
275
276 if ( ! global_terms_enabled() ) {
277 $help .= '<li>' . __( '<strong>Slug</strong> — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ) . '</li>';
278 }
279
280 if ( 'category' == $taxonomy ) {
281 $help .= '<li>' . __( '<strong>Parent</strong> — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.' ) . '</li>';
282 }
283
284 $help .= '<li>' . __( '<strong>Description</strong> — The description is not prominent by default; however, some themes may display it.' ) . '</li>' .
285 '</ul>' .
286 '<p>' . __( 'You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.' ) . '</p>';
287
288 get_current_screen()->add_help_tab(
289 array(
290 'id' => 'adding-terms',
291 'title' => 'category' == $taxonomy ? __( 'Adding Categories' ) : __( 'Adding Tags' ),
292 'content' => $help,
293 )
294 );
295 }
296
297 $help = '<p><strong>' . __( 'For more information:' ) . '</strong></p>';
298
299 if ( 'category' == $taxonomy ) {
300 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Posts_Categories_Screen">Documentation on Categories</a>' ) . '</p>';
301 } elseif ( 'link_category' == $taxonomy ) {
302 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Links_Link_Categories_Screen">Documentation on Link Categories</a>' ) . '</p>';
303 } else {
304 $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Posts_Tags_Screen">Documentation on Tags</a>' ) . '</p>';
305 }
306
307 $help .= '<p>' . __( '<a href="https://wordpress.org/support/">Support Forums</a>' ) . '</p>';
308
309 get_current_screen()->set_help_sidebar( $help );
310
311 unset( $help );
312}
313
314require_once( ABSPATH . 'wp-admin/admin-header.php' );
315
316/** Also used by the Edit Tag form */
317require_once( ABSPATH . 'wp-admin/includes/edit-tag-messages.php' );
318
319$class = ( isset( $_REQUEST['error'] ) ) ? 'error' : 'updated';
320
321if ( is_plugin_active( 'wpcat2tag-importer/wpcat2tag-importer.php' ) ) {
322 $import_link = admin_url( 'admin.php?import=wpcat2tag' );
323} else {
324 $import_link = admin_url( 'import.php' );
325}
326
327?>
328
329<div class="wrap nosubsub">
330<h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1>
331
332<?php
333if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
334 /* translators: %s: search keywords */
335 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) );
336}
337?>
338
339<hr class="wp-header-end">
340
341<?php if ( $message ) : ?>
342<div id="message" class="<?php echo $class; ?> notice is-dismissible"><p><?php echo $message; ?></p></div>
343 <?php
344 $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'message', 'error' ), $_SERVER['REQUEST_URI'] );
345endif;
346?>
347<div id="ajax-response"></div>
348
349<form class="search-form wp-clearfix" method="get">
350<input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
351<input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
352
353<?php $wp_list_table->search_box( $tax->labels->search_items, 'tag' ); ?>
354
355</form>
356
357<?php
358$can_edit_terms = current_user_can( $tax->cap->edit_terms );
359
360if ( $can_edit_terms ) {
361 ?>
362<div id="col-container" class="wp-clearfix">
363
364<div id="col-left">
365<div class="col-wrap">
366
367 <?php
368 if ( 'category' == $taxonomy ) {
369 /**
370 * Fires before the Add Category form.
371 *
372 * @since 2.1.0
373 * @deprecated 3.0.0 Use {$taxonomy}_pre_add_form instead.
374 *
375 * @param object $arg Optional arguments cast to an object.
376 */
377 do_action( 'add_category_form_pre', (object) array( 'parent' => 0 ) );
378 } elseif ( 'link_category' == $taxonomy ) {
379 /**
380 * Fires before the link category form.
381 *
382 * @since 2.3.0
383 * @deprecated 3.0.0 Use {$taxonomy}_pre_add_form instead.
384 *
385 * @param object $arg Optional arguments cast to an object.
386 */
387 do_action( 'add_link_category_form_pre', (object) array( 'parent' => 0 ) );
388 } else {
389 /**
390 * Fires before the Add Tag form.
391 *
392 * @since 2.5.0
393 * @deprecated 3.0.0 Use {$taxonomy}_pre_add_form instead.
394 *
395 * @param string $taxonomy The taxonomy slug.
396 */
397 do_action( 'add_tag_form_pre', $taxonomy );
398 }
399
400 /**
401 * Fires before the Add Term form for all taxonomies.
402 *
403 * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
404 *
405 * @since 3.0.0
406 *
407 * @param string $taxonomy The taxonomy slug.
408 */
409 do_action( "{$taxonomy}_pre_add_form", $taxonomy );
410 ?>
411
412<div class="form-wrap">
413<h2><?php echo $tax->labels->add_new_item; ?></h2>
414<form id="addtag" method="post" action="edit-tags.php" class="validate"
415 <?php
416 /**
417 * Fires inside the Add Tag form tag.
418 *
419 * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
420 *
421 * @since 3.7.0
422 */
423 do_action( "{$taxonomy}_term_new_form_tag" );
424 ?>
425>
426<input type="hidden" name="action" value="add-tag" />
427<input type="hidden" name="screen" value="<?php echo esc_attr( $current_screen->id ); ?>" />
428<input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
429<input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
430 <?php wp_nonce_field( 'add-tag', '_wpnonce_add-tag' ); ?>
431
432<div class="form-field form-required term-name-wrap">
433 <label for="tag-name"><?php _ex( 'Name', 'term name' ); ?></label>
434 <input name="tag-name" id="tag-name" type="text" value="" size="40" aria-required="true" />
435 <p><?php _e( 'The name is how it appears on your site.' ); ?></p>
436</div>
437 <?php if ( ! global_terms_enabled() ) : ?>
438<div class="form-field term-slug-wrap">
439 <label for="tag-slug"><?php _e( 'Slug' ); ?></label>
440 <input name="slug" id="tag-slug" type="text" value="" size="40" />
441 <p><?php _e( 'The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ); ?></p>
442</div>
443<?php endif; // global_terms_enabled() ?>
444 <?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?>
445<div class="form-field term-parent-wrap">
446 <label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label>
447 <?php
448 $dropdown_args = array(
449 'hide_empty' => 0,
450 'hide_if_empty' => false,
451 'taxonomy' => $taxonomy,
452 'name' => 'parent',
453 'orderby' => 'name',
454 'hierarchical' => true,
455 'show_option_none' => __( 'None' ),
456 );
457
458 /**
459 * Filters the taxonomy parent drop-down on the Edit Term page.
460 *
461 * @since 3.7.0
462 * @since 4.2.0 Added `$context` parameter.
463 *
464 * @param array $dropdown_args {
465 * An array of taxonomy parent drop-down arguments.
466 *
467 * @type int|bool $hide_empty Whether to hide terms not attached to any posts. Default 0|false.
468 * @type bool $hide_if_empty Whether to hide the drop-down if no terms exist. Default false.
469 * @type string $taxonomy The taxonomy slug.
470 * @type string $name Value of the name attribute to use for the drop-down select element.
471 * Default 'parent'.
472 * @type string $orderby The field to order by. Default 'name'.
473 * @type bool $hierarchical Whether the taxonomy is hierarchical. Default true.
474 * @type string $show_option_none Label to display if there are no terms. Default 'None'.
475 * }
476 * @param string $taxonomy The taxonomy slug.
477 * @param string $context Filter context. Accepts 'new' or 'edit'.
478 */
479 $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' );
480
481 wp_dropdown_categories( $dropdown_args );
482 ?>
483 <?php if ( 'category' == $taxonomy ) : ?>
484 <p><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p>
485 <?php else : ?>
486 <p><?php _e( 'Assign a parent term to create a hierarchy. The term Jazz, for example, would be the parent of Bebop and Big Band.' ); ?></p>
487 <?php endif; ?>
488</div>
489 <?php endif; // is_taxonomy_hierarchical() ?>
490<div class="form-field term-description-wrap">
491 <label for="tag-description"><?php _e( 'Description' ); ?></label>
492 <textarea name="description" id="tag-description" rows="5" cols="40"></textarea>
493 <p><?php _e( 'The description is not prominent by default; however, some themes may show it.' ); ?></p>
494</div>
495
496 <?php
497 if ( ! is_taxonomy_hierarchical( $taxonomy ) ) {
498 /**
499 * Fires after the Add Tag form fields for non-hierarchical taxonomies.
500 *
501 * @since 3.0.0
502 *
503 * @param string $taxonomy The taxonomy slug.
504 */
505 do_action( 'add_tag_form_fields', $taxonomy );
506 }
507
508 /**
509 * Fires after the Add Term form fields.
510 *
511 * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
512 *
513 * @since 3.0.0
514 *
515 * @param string $taxonomy The taxonomy slug.
516 */
517 do_action( "{$taxonomy}_add_form_fields", $taxonomy );
518
519 submit_button( $tax->labels->add_new_item );
520
521 if ( 'category' == $taxonomy ) {
522 /**
523 * Fires at the end of the Edit Category form.
524 *
525 * @since 2.1.0
526 * @deprecated 3.0.0 Use {$taxonomy}_add_form instead.
527 *
528 * @param object $arg Optional arguments cast to an object.
529 */
530 do_action( 'edit_category_form', (object) array( 'parent' => 0 ) );
531 } elseif ( 'link_category' == $taxonomy ) {
532 /**
533 * Fires at the end of the Edit Link form.
534 *
535 * @since 2.3.0
536 * @deprecated 3.0.0 Use {$taxonomy}_add_form instead.
537 *
538 * @param object $arg Optional arguments cast to an object.
539 */
540 do_action( 'edit_link_category_form', (object) array( 'parent' => 0 ) );
541 } else {
542 /**
543 * Fires at the end of the Add Tag form.
544 *
545 * @since 2.7.0
546 * @deprecated 3.0.0 Use {$taxonomy}_add_form instead.
547 *
548 * @param string $taxonomy The taxonomy slug.
549 */
550 do_action( 'add_tag_form', $taxonomy );
551 }
552
553 /**
554 * Fires at the end of the Add Term form for all taxonomies.
555 *
556 * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
557 *
558 * @since 3.0.0
559 *
560 * @param string $taxonomy The taxonomy slug.
561 */
562 do_action( "{$taxonomy}_add_form", $taxonomy );
563 ?>
564</form></div>
565</div>
566</div><!-- /col-left -->
567
568<div id="col-right">
569<div class="col-wrap">
570<?php } ?>
571
572<?php $wp_list_table->views(); ?>
573
574<form id="posts-filter" method="post">
575<input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
576<input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
577
578<?php $wp_list_table->display(); ?>
579
580</form>
581
582<?php if ( 'category' == $taxonomy ) : ?>
583<div class="form-wrap edit-term-notes">
584<p>
585 <?php
586 printf(
587 /* translators: %s: default category */
588 __( 'Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.' ),
589 /** This filter is documented in wp-includes/category-template.php */
590 '<strong>' . apply_filters( 'the_category', get_cat_name( get_option( 'default_category' ) ), '', '' ) . '</strong>'
591 );
592 ?>
593</p>
594 <?php if ( current_user_can( 'import' ) ) : ?>
595 <p>
596 <?php printf( __( 'Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.' ), esc_url( $import_link ) ); ?>
597 </p>
598 <?php endif; ?>
599</div>
600<?php elseif ( 'post_tag' == $taxonomy && current_user_can( 'import' ) ) : ?>
601<div class="form-wrap edit-term-notes">
602<p><?php printf( __( 'Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>.' ), esc_url( $import_link ) ); ?></p>
603</div>
604 <?php
605endif;
606
607/**
608 * Fires after the taxonomy list table.
609 *
610 * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
611 *
612 * @since 3.0.0
613 *
614 * @param string $taxonomy The taxonomy name.
615 */
616do_action( "after-{$taxonomy}-table", $taxonomy );
617
618if ( $can_edit_terms ) {
619 ?>
620</div>
621</div><!-- /col-right -->
622
623</div><!-- /col-container -->
624<?php } ?>
625
626</div><!-- /wrap -->
627
628<?php if ( ! wp_is_mobile() ) : ?>
629<script type="text/javascript">
630try{document.forms.addtag['tag-name'].focus();}catch(e){}
631</script>
632 <?php
633endif;
634
635$wp_list_table->inline_edit();
636
637include( ABSPATH . 'wp-admin/admin-footer.php' );