- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r43386 r43571 213 213 214 214 $args = wp_parse_args( 215 $this->callback_args, array( 215 $this->callback_args, 216 array( 216 217 'page' => 1, 217 218 'number' => 20, … … 386 387 $edit_link 387 388 ); 388 $name = sprintf(389 $name = sprintf( 389 390 '<a class="row-title" href="%s" aria-label="%s">%s</a>', 390 391 esc_url( $edit_link ), … … 608 609 return; 609 610 } 610 ?>611 ?> 611 612 612 613 <form method="get"><table style="display: none"><tbody id="inlineedit"> … … 620 621 <span class="input-text-wrap"><input type="text" name="name" class="ptitle" value="" /></span> 621 622 </label> 622 <?php if ( ! global_terms_enabled() ) { ?>623 <?php if ( ! global_terms_enabled() ) { ?> 623 624 <label> 624 625 <span class="title"><?php _e( 'Slug' ); ?></span> … … 627 628 <?php } ?> 628 629 </div></fieldset> 629 <?php630 <?php 630 631 631 632 $core_columns = array( … … 639 640 list( $columns ) = $this->get_column_info(); 640 641 641 foreach ( $columns as $column_name => $column_display_name ) {642 if ( isset( $core_columns[ $column_name ] ) ) {643 continue;644 }645 646 /** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */647 do_action( 'quick_edit_custom_box', $column_name, 'edit-tags', $this->screen->taxonomy );648 }649 650 ?>642 foreach ( $columns as $column_name => $column_display_name ) { 643 if ( isset( $core_columns[ $column_name ] ) ) { 644 continue; 645 } 646 647 /** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */ 648 do_action( 'quick_edit_custom_box', $column_name, 'edit-tags', $this->screen->taxonomy ); 649 } 650 651 ?> 651 652 652 653 <div class="inline-edit-save submit"> … … 664 665 </td></tr> 665 666 </tbody></table></form> 666 <?php667 <?php 667 668 } 668 669 }
Note: See TracChangeset
for help on using the changeset viewer.