[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-admin/ -> edit-tags.php (source)

   1  <?php
   2  /**
   3   * Edit Tags Administration Screen.
   4   *
   5   * @package WordPress
   6   * @subpackage Administration
   7   */
   8  
   9  /** WordPress Administration Bootstrap */
  10  require_once  __DIR__ . '/admin.php';
  11  
  12  if ( ! $taxnow ) {
  13      wp_die( __( 'Invalid taxonomy.' ) );
  14  }
  15  
  16  $tax = get_taxonomy( $taxnow );
  17  
  18  if ( ! $tax ) {
  19      wp_die( __( 'Invalid taxonomy.' ) );
  20  }
  21  
  22  if ( ! in_array( $tax->name, get_taxonomies( array( 'show_ui' => true ) ), true ) ) {
  23      wp_die( __( 'Sorry, you are not allowed to edit terms in this taxonomy.' ) );
  24  }
  25  
  26  if ( ! 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   */
  39  global $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  
  46  if ( '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&amp;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  
  57  add_screen_option(
  58      'per_page',
  59      array(
  60          'default' => 20,
  61          'option'  => 'edit_' . $tax->name . '_per_page',
  62      )
  63  );
  64  
  65  get_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();
  74  if ( ! $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 );
  78  switch ( $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 does not exist. Perhaps it was deleted?' ) );
 161          }
 162  
 163          wp_redirect( sanitize_url( 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 does not 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  
 203          $screen = get_current_screen()->id;
 204          $tags   = (array) $_REQUEST['delete_tags'];
 205  
 206          /** This action is documented in wp-admin/edit.php */
 207          $location = apply_filters( "handle_bulk_actions-{$screen}", $location, $wp_list_table->current_action(), $tags ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
 208          break;
 209  }
 210  
 211  if ( ! $location && ! empty( $_REQUEST['_wp_http_referer'] ) ) {
 212      $location = remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) );
 213  }
 214  
 215  if ( $location ) {
 216      if ( $pagenum > 1 ) {
 217          $location = add_query_arg( 'paged', $pagenum, $location ); // $pagenum takes care of $total_pages.
 218      }
 219  
 220      /**
 221       * Filters the taxonomy redirect destination URL.
 222       *
 223       * @since 4.6.0
 224       *
 225       * @param string      $location The destination URL.
 226       * @param WP_Taxonomy $tax      The taxonomy object.
 227       */
 228      wp_redirect( apply_filters( 'redirect_term_location', $location, $tax ) );
 229      exit;
 230  }
 231  
 232  $wp_list_table->prepare_items();
 233  $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
 234  
 235  if ( $pagenum > $total_pages && $total_pages > 0 ) {
 236      wp_redirect( add_query_arg( 'paged', $total_pages ) );
 237      exit;
 238  }
 239  
 240  wp_enqueue_script( 'admin-tags' );
 241  if ( current_user_can( $tax->cap->edit_terms ) ) {
 242      wp_enqueue_script( 'inline-edit-tax' );
 243  }
 244  
 245  if ( 'category' === $taxonomy || 'link_category' === $taxonomy || 'post_tag' === $taxonomy ) {
 246      $help = '';
 247      if ( 'category' === $taxonomy ) {
 248          $help = '<p>' . sprintf(
 249              /* translators: %s: URL to Writing Settings screen. */
 250              __( '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>.' ),
 251              'options-writing.php'
 252          ) . '</p>';
 253      } elseif ( 'link_category' === $taxonomy ) {
 254          $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>';
 255      } else {
 256          $help = '<p>' . __( 'You can assign keywords to your posts using <strong>tags</strong>. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.' ) . '</p>';
 257      }
 258  
 259      if ( 'link_category' === $taxonomy ) {
 260          $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>';
 261      } else {
 262          $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>';
 263      }
 264  
 265      get_current_screen()->add_help_tab(
 266          array(
 267              'id'      => 'overview',
 268              'title'   => __( 'Overview' ),
 269              'content' => $help,
 270          )
 271      );
 272  
 273      if ( 'category' === $taxonomy || 'post_tag' === $taxonomy ) {
 274          if ( 'category' === $taxonomy ) {
 275              $help = '<p>' . __( 'When adding a new category on this screen, you&#8217;ll fill in the following fields:' ) . '</p>';
 276          } else {
 277              $help = '<p>' . __( 'When adding a new tag on this screen, you&#8217;ll fill in the following fields:' ) . '</p>';
 278          }
 279  
 280          $help .= '<ul>' .
 281          '<li>' . __( '<strong>Name</strong> &mdash; The name is how it appears on your site.' ) . '</li>';
 282  
 283          $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>';
 284  
 285          if ( 'category' === $taxonomy ) {
 286              $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>';
 287          }
 288  
 289          $help .= '<li>' . __( '<strong>Description</strong> &mdash; The description is not prominent by default; however, some themes may display it.' ) . '</li>' .
 290          '</ul>' .
 291          '<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>';
 292  
 293          get_current_screen()->add_help_tab(
 294              array(
 295                  'id'      => 'adding-terms',
 296                  'title'   => 'category' === $taxonomy ? __( 'Adding Categories' ) : __( 'Adding Tags' ),
 297                  'content' => $help,
 298              )
 299          );
 300      }
 301  
 302      $help = '<p><strong>' . __( 'For more information:' ) . '</strong></p>';
 303  
 304      if ( 'category' === $taxonomy ) {
 305          $help .= '<p>' . __( '<a href="https://wordpress.org/documentation/article/posts-categories-screen/">Documentation on Categories</a>' ) . '</p>';
 306      } elseif ( 'link_category' === $taxonomy ) {
 307          $help .= '<p>' . __( '<a href="https://codex.wordpress.org/Links_Link_Categories_Screen">Documentation on Link Categories</a>' ) . '</p>';
 308      } else {
 309          $help .= '<p>' . __( '<a href="https://wordpress.org/documentation/article/posts-tags-screen/">Documentation on Tags</a>' ) . '</p>';
 310      }
 311  
 312      $help .= '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>';
 313  
 314      get_current_screen()->set_help_sidebar( $help );
 315  
 316      unset( $help );
 317  }
 318  
 319  require_once  ABSPATH . 'wp-admin/admin-header.php';
 320  
 321  // Also used by the Edit Tag form.
 322  require_once  ABSPATH . 'wp-admin/includes/edit-tag-messages.php';
 323  
 324  $class = ( isset( $_REQUEST['error'] ) ) ? 'error' : 'updated';
 325  
 326  if ( is_plugin_active( 'wpcat2tag-importer/wpcat2tag-importer.php' ) ) {
 327      $import_link = admin_url( 'admin.php?import=wpcat2tag' );
 328  } else {
 329      $import_link = admin_url( 'import.php' );
 330  }
 331  
 332  ?>
 333  
 334  <div class="wrap nosubsub">
 335  <h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1>
 336  
 337  <?php
 338  if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
 339      echo '<span class="subtitle">';
 340      printf(
 341          /* translators: %s: Search query. */
 342          __( 'Search results for: %s' ),
 343          '<strong>' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '</strong>'
 344      );
 345      echo '</span>';
 346  }
 347  ?>
 348  
 349  <hr class="wp-header-end">
 350  
 351  <?php
 352  if ( $message ) :
 353      wp_admin_notice(
 354          $message,
 355          array(
 356              'id'                 => 'message',
 357              'additional_classes' => array( $class ),
 358              'dismissible'        => true,
 359          )
 360      );
 361      $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'message', 'error' ), $_SERVER['REQUEST_URI'] );
 362  endif;
 363  ?>
 364  <div id="ajax-response"></div>
 365  
 366  <form class="search-form wp-clearfix" method="get">
 367  <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
 368  <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
 369  
 370  <?php $wp_list_table->search_box( $tax->labels->search_items, 'tag' ); ?>
 371  
 372  </form>
 373  
 374  <?php
 375  $can_edit_terms = current_user_can( $tax->cap->edit_terms );
 376  
 377  if ( $can_edit_terms ) {
 378      ?>
 379  <div id="col-container" class="wp-clearfix">
 380  
 381  <div id="col-left">
 382  <div class="col-wrap">
 383  
 384      <?php
 385      if ( 'category' === $taxonomy ) {
 386          /**
 387           * Fires before the Add Category form.
 388           *
 389           * @since 2.1.0
 390           * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead.
 391           *
 392           * @param object $arg Optional arguments cast to an object.
 393           */
 394          do_action_deprecated( 'add_category_form_pre', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' );
 395      } elseif ( 'link_category' === $taxonomy ) {
 396          /**
 397           * Fires before the link category form.
 398           *
 399           * @since 2.3.0
 400           * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead.
 401           *
 402           * @param object $arg Optional arguments cast to an object.
 403           */
 404          do_action_deprecated( 'add_link_category_form_pre', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' );
 405      } else {
 406          /**
 407           * Fires before the Add Tag form.
 408           *
 409           * @since 2.5.0
 410           * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead.
 411           *
 412           * @param string $taxonomy The taxonomy slug.
 413           */
 414          do_action_deprecated( 'add_tag_form_pre', array( $taxonomy ), '3.0.0', '{$taxonomy}_pre_add_form' );
 415      }
 416  
 417      /**
 418       * Fires before the Add Term form for all taxonomies.
 419       *
 420       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 421       *
 422       * Possible hook names include:
 423       *
 424       *  - `category_pre_add_form`
 425       *  - `post_tag_pre_add_form`
 426       *
 427       * @since 3.0.0
 428       *
 429       * @param string $taxonomy The taxonomy slug.
 430       */
 431      do_action( "{$taxonomy}_pre_add_form", $taxonomy );
 432      ?>
 433  
 434  <div class="form-wrap">
 435  <h2><?php echo $tax->labels->add_new_item; ?></h2>
 436  <form id="addtag" method="post" action="edit-tags.php" class="validate"
 437      <?php
 438      /**
 439       * Fires inside the Add Tag form tag.
 440       *
 441       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 442       *
 443       * Possible hook names include:
 444       *
 445       *  - `category_term_new_form_tag`
 446       *  - `post_tag_term_new_form_tag`
 447       *
 448       * @since 3.7.0
 449       */
 450      do_action( "{$taxonomy}_term_new_form_tag" );
 451      ?>
 452  >
 453  <input type="hidden" name="action" value="add-tag" />
 454  <input type="hidden" name="screen" value="<?php echo esc_attr( $current_screen->id ); ?>" />
 455  <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
 456  <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
 457      <?php wp_nonce_field( 'add-tag', '_wpnonce_add-tag' ); ?>
 458  
 459  <div class="form-field form-required term-name-wrap">
 460      <label for="tag-name"><?php _ex( 'Name', 'term name' ); ?></label>
 461      <input name="tag-name" id="tag-name" type="text" value="" size="40" aria-required="true" aria-describedby="name-description" />
 462      <p id="name-description"><?php echo $tax->labels->name_field_description; ?></p>
 463  </div>
 464  <div class="form-field term-slug-wrap">
 465      <label for="tag-slug"><?php _e( 'Slug' ); ?></label>
 466      <input name="slug" id="tag-slug" type="text" value="" size="40" aria-describedby="slug-description" />
 467      <p id="slug-description"><?php echo $tax->labels->slug_field_description; ?></p>
 468  </div>
 469      <?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?>
 470  <div class="form-field term-parent-wrap">
 471      <label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label>
 472          <?php
 473          $dropdown_args = array(
 474              'hide_empty'       => 0,
 475              'hide_if_empty'    => false,
 476              'taxonomy'         => $taxonomy,
 477              'name'             => 'parent',
 478              'orderby'          => 'name',
 479              'hierarchical'     => true,
 480              'show_option_none' => __( 'None' ),
 481          );
 482  
 483          /**
 484           * Filters the taxonomy parent drop-down on the Edit Term page.
 485           *
 486           * @since 3.7.0
 487           * @since 4.2.0 Added `$context` parameter.
 488           *
 489           * @param array  $dropdown_args {
 490           *     An array of taxonomy parent drop-down arguments.
 491           *
 492           *     @type int|bool $hide_empty       Whether to hide terms not attached to any posts. Default 0.
 493           *     @type bool     $hide_if_empty    Whether to hide the drop-down if no terms exist. Default false.
 494           *     @type string   $taxonomy         The taxonomy slug.
 495           *     @type string   $name             Value of the name attribute to use for the drop-down select element.
 496           *                                      Default 'parent'.
 497           *     @type string   $orderby          The field to order by. Default 'name'.
 498           *     @type bool     $hierarchical     Whether the taxonomy is hierarchical. Default true.
 499           *     @type string   $show_option_none Label to display if there are no terms. Default 'None'.
 500           * }
 501           * @param string $taxonomy The taxonomy slug.
 502           * @param string $context  Filter context. Accepts 'new' or 'edit'.
 503           */
 504          $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' );
 505  
 506          $dropdown_args['aria_describedby'] = 'parent-description';
 507  
 508          wp_dropdown_categories( $dropdown_args );
 509          ?>
 510          <?php if ( 'category' === $taxonomy ) : ?>
 511          <p id="parent-description"><?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>
 512      <?php else : ?>
 513          <p id="parent-description"><?php echo $tax->labels->parent_field_description; ?></p>
 514      <?php endif; ?>
 515  </div>
 516      <?php endif; // is_taxonomy_hierarchical() ?>
 517  <div class="form-field term-description-wrap">
 518      <label for="tag-description"><?php _e( 'Description' ); ?></label>
 519      <textarea name="description" id="tag-description" rows="5" cols="40" aria-describedby="description-description"></textarea>
 520      <p id="description-description"><?php echo $tax->labels->desc_field_description; ?></p>
 521  </div>
 522  
 523      <?php
 524      if ( ! is_taxonomy_hierarchical( $taxonomy ) ) {
 525          /**
 526           * Fires after the Add Tag form fields for non-hierarchical taxonomies.
 527           *
 528           * @since 3.0.0
 529           *
 530           * @param string $taxonomy The taxonomy slug.
 531           */
 532          do_action( 'add_tag_form_fields', $taxonomy );
 533      }
 534  
 535      /**
 536       * Fires after the Add Term form fields.
 537       *
 538       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 539       *
 540       * Possible hook names include:
 541       *
 542       *  - `category_add_form_fields`
 543       *  - `post_tag_add_form_fields`
 544       *
 545       * @since 3.0.0
 546       *
 547       * @param string $taxonomy The taxonomy slug.
 548       */
 549      do_action( "{$taxonomy}_add_form_fields", $taxonomy );
 550      ?>
 551      <p class="submit">
 552          <?php submit_button( $tax->labels->add_new_item, 'primary', 'submit', false ); ?>
 553          <span class="spinner"></span>
 554      </p>
 555      <?php
 556      if ( 'category' === $taxonomy ) {
 557          /**
 558           * Fires at the end of the Edit Category form.
 559           *
 560           * @since 2.1.0
 561           * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead.
 562           *
 563           * @param object $arg Optional arguments cast to an object.
 564           */
 565          do_action_deprecated( 'edit_category_form', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_add_form' );
 566      } elseif ( 'link_category' === $taxonomy ) {
 567          /**
 568           * Fires at the end of the Edit Link form.
 569           *
 570           * @since 2.3.0
 571           * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead.
 572           *
 573           * @param object $arg Optional arguments cast to an object.
 574           */
 575          do_action_deprecated( 'edit_link_category_form', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_add_form' );
 576      } else {
 577          /**
 578           * Fires at the end of the Add Tag form.
 579           *
 580           * @since 2.7.0
 581           * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead.
 582           *
 583           * @param string $taxonomy The taxonomy slug.
 584           */
 585          do_action_deprecated( 'add_tag_form', array( $taxonomy ), '3.0.0', '{$taxonomy}_add_form' );
 586      }
 587  
 588      /**
 589       * Fires at the end of the Add Term form for all taxonomies.
 590       *
 591       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 592       *
 593       * Possible hook names include:
 594       *
 595       *  - `category_add_form`
 596       *  - `post_tag_add_form`
 597       *
 598       * @since 3.0.0
 599       *
 600       * @param string $taxonomy The taxonomy slug.
 601       */
 602      do_action( "{$taxonomy}_add_form", $taxonomy );
 603      ?>
 604  </form></div>
 605  </div>
 606  </div><!-- /col-left -->
 607  
 608  <div id="col-right">
 609  <div class="col-wrap">
 610  <?php } ?>
 611  
 612  <?php $wp_list_table->views(); ?>
 613  
 614  <form id="posts-filter" method="post">
 615  <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
 616  <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
 617  
 618  <?php $wp_list_table->display(); ?>
 619  
 620  </form>
 621  
 622  <?php if ( 'category' === $taxonomy ) : ?>
 623  <div class="form-wrap edit-term-notes">
 624  <p>
 625      <?php
 626      printf(
 627          /* translators: %s: Default category. */
 628          __( '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.' ),
 629          /** This filter is documented in wp-includes/category-template.php */
 630          '<strong>' . apply_filters( 'the_category', get_cat_name( get_option( 'default_category' ) ), '', '' ) . '</strong>'
 631      );
 632      ?>
 633  </p>
 634      <?php if ( current_user_can( 'import' ) ) : ?>
 635      <p>
 636          <?php
 637          printf(
 638              /* translators: %s: URL to Categories to Tags Converter tool. */
 639              __( 'Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.' ),
 640              esc_url( $import_link )
 641          );
 642          ?>
 643      </p>
 644      <?php endif; ?>
 645  </div>
 646  <?php elseif ( 'post_tag' === $taxonomy && current_user_can( 'import' ) ) : ?>
 647  <div class="form-wrap edit-term-notes">
 648  <p>
 649      <?php
 650      printf(
 651          /* translators: %s: URL to Categories to Tags Converter tool. */
 652          __( 'Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>.' ),
 653          esc_url( $import_link )
 654      );
 655      ?>
 656      </p>
 657  </div>
 658      <?php
 659  endif;
 660  
 661  /**
 662   * Fires after the taxonomy list table.
 663   *
 664   * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 665   *
 666   * Possible hook names include:
 667   *
 668   *  - `after-category-table`
 669   *  - `after-post_tag-table`
 670   *
 671   * @since 3.0.0
 672   *
 673   * @param string $taxonomy The taxonomy name.
 674   */
 675  do_action( "after-{$taxonomy}-table", $taxonomy );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
 676  
 677  if ( $can_edit_terms ) {
 678      ?>
 679  </div>
 680  </div><!-- /col-right -->
 681  
 682  </div><!-- /col-container -->
 683  <?php } ?>
 684  
 685  </div><!-- /wrap -->
 686  
 687  <?php if ( ! wp_is_mobile() ) : ?>
 688  <script type="text/javascript">
 689  try{document.forms.addtag['tag-name'].focus();}catch(e){}
 690  </script>
 691      <?php
 692  endif;
 693  
 694  $wp_list_table->inline_edit();
 695  
 696  require_once  ABSPATH . 'wp-admin/admin-footer.php';


Generated : Mon Mar 18 08:20:01 2024 Cross-referenced by PHPXref