[ 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 Global 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  if ( is_plugin_active( 'wpcat2tag-importer/wpcat2tag-importer.php' ) ) {
 325      $import_link = admin_url( 'admin.php?import=wpcat2tag' );
 326  } else {
 327      $import_link = admin_url( 'import.php' );
 328  }
 329  
 330  ?>
 331  
 332  <div class="wrap nosubsub">
 333  <h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1>
 334  
 335  <?php
 336  if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
 337      echo '<span class="subtitle">';
 338      printf(
 339          /* translators: %s: Search query. */
 340          __( 'Search results for: %s' ),
 341          '<strong>' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '</strong>'
 342      );
 343      echo '</span>';
 344  }
 345  ?>
 346  
 347  <hr class="wp-header-end">
 348  
 349  <?php
 350  $class = ( isset( $_REQUEST['error'] ) ) ? 'error' : 'updated';
 351  
 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  
 362      $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'message', 'error' ), $_SERVER['REQUEST_URI'] );
 363  }
 364  ?>
 365  <div id="ajax-response"></div>
 366  
 367  <form class="search-form wp-clearfix" method="get">
 368  <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
 369  <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
 370  
 371  <?php $wp_list_table->search_box( $tax->labels->search_items, 'tag' ); ?>
 372  
 373  </form>
 374  
 375  <?php
 376  $can_edit_terms = current_user_can( $tax->cap->edit_terms );
 377  
 378  if ( $can_edit_terms ) {
 379      ?>
 380  <div id="col-container" class="wp-clearfix">
 381  
 382  <div id="col-left">
 383  <div class="col-wrap">
 384  
 385      <?php
 386      if ( 'category' === $taxonomy ) {
 387          /**
 388           * Fires before the Add Category form.
 389           *
 390           * @since 2.1.0
 391           * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead.
 392           *
 393           * @param object $arg Optional arguments cast to an object.
 394           */
 395          do_action_deprecated( 'add_category_form_pre', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' );
 396      } elseif ( 'link_category' === $taxonomy ) {
 397          /**
 398           * Fires before the link category form.
 399           *
 400           * @since 2.3.0
 401           * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead.
 402           *
 403           * @param object $arg Optional arguments cast to an object.
 404           */
 405          do_action_deprecated( 'add_link_category_form_pre', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' );
 406      } else {
 407          /**
 408           * Fires before the Add Tag form.
 409           *
 410           * @since 2.5.0
 411           * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead.
 412           *
 413           * @param string $taxonomy The taxonomy slug.
 414           */
 415          do_action_deprecated( 'add_tag_form_pre', array( $taxonomy ), '3.0.0', '{$taxonomy}_pre_add_form' );
 416      }
 417  
 418      /**
 419       * Fires before the Add Term form for all taxonomies.
 420       *
 421       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 422       *
 423       * Possible hook names include:
 424       *
 425       *  - `category_pre_add_form`
 426       *  - `post_tag_pre_add_form`
 427       *
 428       * @since 3.0.0
 429       *
 430       * @param string $taxonomy The taxonomy slug.
 431       */
 432      do_action( "{$taxonomy}_pre_add_form", $taxonomy );
 433      ?>
 434  
 435  <div class="form-wrap">
 436  <h2><?php echo $tax->labels->add_new_item; ?></h2>
 437  <form id="addtag" method="post" action="edit-tags.php" class="validate"
 438      <?php
 439      /**
 440       * Fires inside the Add Tag form tag.
 441       *
 442       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 443       *
 444       * Possible hook names include:
 445       *
 446       *  - `category_term_new_form_tag`
 447       *  - `post_tag_term_new_form_tag`
 448       *
 449       * @since 3.7.0
 450       */
 451      do_action( "{$taxonomy}_term_new_form_tag" );
 452      ?>
 453  >
 454  <input type="hidden" name="action" value="add-tag" />
 455  <input type="hidden" name="screen" value="<?php echo esc_attr( $current_screen->id ); ?>" />
 456  <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
 457  <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
 458      <?php wp_nonce_field( 'add-tag', '_wpnonce_add-tag' ); ?>
 459  
 460  <div class="form-field form-required term-name-wrap">
 461      <label for="tag-name"><?php _ex( 'Name', 'term name' ); ?></label>
 462      <input name="tag-name" id="tag-name" type="text" value="" size="40" aria-required="true" aria-describedby="name-description" />
 463      <p id="name-description"><?php echo $tax->labels->name_field_description; ?></p>
 464  </div>
 465  <div class="form-field term-slug-wrap">
 466      <label for="tag-slug"><?php _e( 'Slug' ); ?></label>
 467      <input name="slug" id="tag-slug" type="text" value="" size="40" aria-describedby="slug-description" />
 468      <p id="slug-description"><?php echo $tax->labels->slug_field_description; ?></p>
 469  </div>
 470      <?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?>
 471  <div class="form-field term-parent-wrap">
 472      <label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label>
 473          <?php
 474          $dropdown_args = array(
 475              'hide_empty'       => 0,
 476              'hide_if_empty'    => false,
 477              'taxonomy'         => $taxonomy,
 478              'name'             => 'parent',
 479              'orderby'          => 'name',
 480              'hierarchical'     => true,
 481              'show_option_none' => __( 'None' ),
 482          );
 483  
 484          /**
 485           * Filters the taxonomy parent drop-down on the Edit Term page.
 486           *
 487           * @since 3.7.0
 488           * @since 4.2.0 Added `$context` parameter.
 489           *
 490           * @param array  $dropdown_args {
 491           *     An array of taxonomy parent drop-down arguments.
 492           *
 493           *     @type int|bool $hide_empty       Whether to hide terms not attached to any posts. Default 0.
 494           *     @type bool     $hide_if_empty    Whether to hide the drop-down if no terms exist. Default false.
 495           *     @type string   $taxonomy         The taxonomy slug.
 496           *     @type string   $name             Value of the name attribute to use for the drop-down select element.
 497           *                                      Default 'parent'.
 498           *     @type string   $orderby          The field to order by. Default 'name'.
 499           *     @type bool     $hierarchical     Whether the taxonomy is hierarchical. Default true.
 500           *     @type string   $show_option_none Label to display if there are no terms. Default 'None'.
 501           * }
 502           * @param string $taxonomy The taxonomy slug.
 503           * @param string $context  Filter context. Accepts 'new' or 'edit'.
 504           */
 505          $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' );
 506  
 507          $dropdown_args['aria_describedby'] = 'parent-description';
 508  
 509          wp_dropdown_categories( $dropdown_args );
 510          ?>
 511          <?php if ( 'category' === $taxonomy ) : ?>
 512          <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>
 513      <?php else : ?>
 514          <p id="parent-description"><?php echo $tax->labels->parent_field_description; ?></p>
 515      <?php endif; ?>
 516  </div>
 517      <?php endif; // is_taxonomy_hierarchical() ?>
 518  <div class="form-field term-description-wrap">
 519      <label for="tag-description"><?php _e( 'Description' ); ?></label>
 520      <textarea name="description" id="tag-description" rows="5" cols="40" aria-describedby="description-description"></textarea>
 521      <p id="description-description"><?php echo $tax->labels->desc_field_description; ?></p>
 522  </div>
 523  
 524      <?php
 525      if ( ! is_taxonomy_hierarchical( $taxonomy ) ) {
 526          /**
 527           * Fires after the Add Tag form fields for non-hierarchical taxonomies.
 528           *
 529           * @since 3.0.0
 530           *
 531           * @param string $taxonomy The taxonomy slug.
 532           */
 533          do_action( 'add_tag_form_fields', $taxonomy );
 534      }
 535  
 536      /**
 537       * Fires after the Add Term form fields.
 538       *
 539       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 540       *
 541       * Possible hook names include:
 542       *
 543       *  - `category_add_form_fields`
 544       *  - `post_tag_add_form_fields`
 545       *
 546       * @since 3.0.0
 547       *
 548       * @param string $taxonomy The taxonomy slug.
 549       */
 550      do_action( "{$taxonomy}_add_form_fields", $taxonomy );
 551      ?>
 552      <p class="submit">
 553          <?php submit_button( $tax->labels->add_new_item, 'primary', 'submit', false ); ?>
 554          <span class="spinner"></span>
 555      </p>
 556      <?php
 557      if ( 'category' === $taxonomy ) {
 558          /**
 559           * Fires at the end of the Edit Category form.
 560           *
 561           * @since 2.1.0
 562           * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead.
 563           *
 564           * @param object $arg Optional arguments cast to an object.
 565           */
 566          do_action_deprecated( 'edit_category_form', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_add_form' );
 567      } elseif ( 'link_category' === $taxonomy ) {
 568          /**
 569           * Fires at the end of the Edit Link form.
 570           *
 571           * @since 2.3.0
 572           * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead.
 573           *
 574           * @param object $arg Optional arguments cast to an object.
 575           */
 576          do_action_deprecated( 'edit_link_category_form', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_add_form' );
 577      } else {
 578          /**
 579           * Fires at the end of the Add Tag form.
 580           *
 581           * @since 2.7.0
 582           * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead.
 583           *
 584           * @param string $taxonomy The taxonomy slug.
 585           */
 586          do_action_deprecated( 'add_tag_form', array( $taxonomy ), '3.0.0', '{$taxonomy}_add_form' );
 587      }
 588  
 589      /**
 590       * Fires at the end of the Add Term form for all taxonomies.
 591       *
 592       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 593       *
 594       * Possible hook names include:
 595       *
 596       *  - `category_add_form`
 597       *  - `post_tag_add_form`
 598       *
 599       * @since 3.0.0
 600       *
 601       * @param string $taxonomy The taxonomy slug.
 602       */
 603      do_action( "{$taxonomy}_add_form", $taxonomy );
 604      ?>
 605  </form></div>
 606  </div>
 607  </div><!-- /col-left -->
 608  
 609  <div id="col-right">
 610  <div class="col-wrap">
 611  <?php } ?>
 612  
 613  <?php $wp_list_table->views(); ?>
 614  
 615  <form id="posts-filter" method="post">
 616  <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
 617  <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
 618  
 619  <?php $wp_list_table->display(); ?>
 620  
 621  </form>
 622  
 623  <?php if ( 'category' === $taxonomy ) : ?>
 624  <div class="form-wrap edit-term-notes">
 625  <p>
 626      <?php
 627      printf(
 628          /* translators: %s: Default category. */
 629          __( '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.' ),
 630          /** This filter is documented in wp-includes/category-template.php */
 631          '<strong>' . apply_filters( 'the_category', get_cat_name( get_option( 'default_category' ) ), '', '' ) . '</strong>'
 632      );
 633      ?>
 634  </p>
 635      <?php if ( current_user_can( 'import' ) ) : ?>
 636      <p>
 637          <?php
 638          printf(
 639              /* translators: %s: URL to Categories to Tags Converter tool. */
 640              __( 'Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.' ),
 641              esc_url( $import_link )
 642          );
 643          ?>
 644      </p>
 645      <?php endif; ?>
 646  </div>
 647  <?php elseif ( 'post_tag' === $taxonomy && current_user_can( 'import' ) ) : ?>
 648  <div class="form-wrap edit-term-notes">
 649  <p>
 650      <?php
 651      printf(
 652          /* translators: %s: URL to Categories to Tags Converter tool. */
 653          __( 'Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>.' ),
 654          esc_url( $import_link )
 655      );
 656      ?>
 657      </p>
 658  </div>
 659      <?php
 660  endif;
 661  
 662  /**
 663   * Fires after the taxonomy list table.
 664   *
 665   * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 666   *
 667   * Possible hook names include:
 668   *
 669   *  - `after-category-table`
 670   *  - `after-post_tag-table`
 671   *
 672   * @since 3.0.0
 673   *
 674   * @param string $taxonomy The taxonomy name.
 675   */
 676  do_action( "after-{$taxonomy}-table", $taxonomy );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
 677  
 678  if ( $can_edit_terms ) {
 679      ?>
 680  </div>
 681  </div><!-- /col-right -->
 682  
 683  </div><!-- /col-container -->
 684  <?php } ?>
 685  
 686  </div><!-- /wrap -->
 687  
 688  <?php if ( ! wp_is_mobile() ) : ?>
 689  <script type="text/javascript">
 690  try{document.forms.addtag['tag-name'].focus();}catch(e){}
 691  </script>
 692      <?php
 693  endif;
 694  
 695  $wp_list_table->inline_edit();
 696  
 697  require_once  ABSPATH . 'wp-admin/admin-footer.php';


Generated : Thu Nov 21 08:20:01 2024 Cross-referenced by PHPXref