- Timestamp:
- 04/07/2022 04:42:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r53049 r53096 1612 1612 <tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="<?php echo $classes; ?>" style="display: none"> 1613 1613 <td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange"> 1614 1614 <div class="inline-edit-wrapper" role="region" aria-labelledby="inline-edit-legend"> 1615 1615 <fieldset class="inline-edit-col-left"> 1616 <legend class="inline-edit-legend" ><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend>1616 <legend class="inline-edit-legend" id="inline-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend> 1617 1617 <div class="inline-edit-col"> 1618 1618 … … 1829 1829 <?php if ( current_user_can( $taxonomy->cap->assign_terms ) ) : ?> 1830 1830 <?php $taxonomy_name = esc_attr( $taxonomy->name ); ?> 1831 1831 <div class="inline-edit-tags-wrap"> 1832 1832 <label class="inline-edit-tags"> 1833 1833 <span class="title"><?php echo esc_html( $taxonomy->labels->name ); ?></span> 1834 <textarea data-wp-taxonomy="<?php echo $taxonomy_name; ?>" cols="22" rows="1" name="tax_input[<?php echo $taxonomy_name; ?>]" class="tax_input_<?php echo $taxonomy_name; ?>"></textarea>1834 <textarea data-wp-taxonomy="<?php echo $taxonomy_name; ?>" cols="22" rows="1" name="tax_input[<?php echo esc_attr( $taxonomy->name ); ?>]" class="tax_input_<?php echo esc_attr( $taxonomy->name ); ?>" aria-describedby="inline-edit-<?php echo esc_attr( $taxonomy->name ); ?>-desc"></textarea> 1835 1835 </label> 1836 1836 <p class="howto" id="inline-edit-<?php echo esc_attr( $taxonomy->name ); ?>-desc"><?php echo esc_html( $taxonomy->labels->separate_items_with_commas ); ?></p> 1837 </div> 1837 1838 <?php endif; // current_user_can( 'assign_terms' ) ?> 1838 1839 … … 2031 2032 </div> 2032 2033 </div> 2034 </div> <!-- end of .inline-edit-wrapper --> 2033 2035 2034 2036 </td></tr>
Note: See TracChangeset
for help on using the changeset viewer.