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