diff --git a/src/wp-admin/includes/class-wp-media-list-table.php b/src/wp-admin/includes/class-wp-media-list-table.php
index 6e9e362..002c79e 100644
a
|
b
|
private function _get_row_actions( $post, $att_title ) { |
678 | 678 | } |
679 | 679 | } |
680 | 680 | $actions['view'] = sprintf( |
681 | | '<a href="%s" aria-label="%s" rel="permalink">%s</a>', |
| 681 | '<a href="%s" aria-label="%s" rel="bookmark">%s</a>', |
682 | 682 | get_permalink( $post->ID ), |
683 | 683 | /* translators: %s: attachment title */ |
684 | 684 | esc_attr( sprintf( __( 'View “%s”' ), $att_title ) ), |
… |
… |
private function _get_row_actions( $post, $att_title ) { |
737 | 737 | } |
738 | 738 | if ( ! $this->is_trash ) { |
739 | 739 | $actions['view'] = sprintf( |
740 | | '<a href="%s" aria-label="%s" rel="permalink">%s</a>', |
| 740 | '<a href="%s" aria-label="%s" rel="bookmark">%s</a>', |
741 | 741 | get_permalink( $post->ID ), |
742 | 742 | /* translators: %s: attachment title */ |
743 | 743 | esc_attr( sprintf( __( 'View “%s”' ), $att_title ) ), |
diff --git a/src/wp-admin/includes/class-wp-posts-list-table.php b/src/wp-admin/includes/class-wp-posts-list-table.php
index 9881c51..6a4b652 100644
a
|
b
|
protected function handle_row_actions( $post, $column_name, $primary ) { |
1288 | 1288 | if ( $can_edit_post ) { |
1289 | 1289 | $preview_link = get_preview_post_link( $post ); |
1290 | 1290 | $actions['view'] = sprintf( |
1291 | | '<a href="%s" rel="permalink" aria-label="%s">%s</a>', |
| 1291 | '<a href="%s" rel="bookmark" aria-label="%s">%s</a>', |
1292 | 1292 | esc_url( $preview_link ), |
1293 | 1293 | /* translators: %s: post title */ |
1294 | 1294 | esc_attr( sprintf( __( 'Preview “%s”' ), $title ) ), |
… |
… |
protected function handle_row_actions( $post, $column_name, $primary ) { |
1297 | 1297 | } |
1298 | 1298 | } elseif ( 'trash' != $post->post_status ) { |
1299 | 1299 | $actions['view'] = sprintf( |
1300 | | '<a href="%s" rel="permalink" aria-label="%s">%s</a>', |
| 1300 | '<a href="%s" rel="bookmark" aria-label="%s">%s</a>', |
1301 | 1301 | get_permalink( $post->ID ), |
1302 | 1302 | /* translators: %s: post title */ |
1303 | 1303 | esc_attr( sprintf( __( 'View “%s”' ), $title ) ), |
… |
… |
public function inline_edit() { |
1398 | 1398 | |
1399 | 1399 | <tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="inline-edit-row inline-edit-row-<?php echo "$hclass inline-edit-" . $screen->post_type; |
1400 | 1400 | echo $bulk ? " bulk-edit-row bulk-edit-row-$hclass bulk-edit-{$screen->post_type}" : " quick-edit-row quick-edit-row-$hclass inline-edit-{$screen->post_type}"; |
1401 | | ?>" style="display: none"><td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange"> |
| 1401 | ?>" style="display: none"><td class="colspanchange"> |
1402 | 1402 | |
1403 | 1403 | <fieldset class="inline-edit-col-left"> |
1404 | 1404 | <legend class="inline-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend> |
diff --git a/src/wp-admin/includes/class-wp-screen.php b/src/wp-admin/includes/class-wp-screen.php
index de65c86..1f2185d 100644
a
|
b
|
public function render_per_page_options() { |
1181 | 1181 | <?php if ( $per_page_label ) : ?> |
1182 | 1182 | <label for="<?php echo esc_attr( $option ); ?>"><?php echo $per_page_label; ?></label> |
1183 | 1183 | <input type="number" step="1" min="1" max="999" class="screen-per-page" name="wp_screen_options[value]" |
1184 | | id="<?php echo esc_attr( $option ); ?>" maxlength="3" |
| 1184 | id="<?php echo esc_attr( $option ); ?>" |
1185 | 1185 | value="<?php echo esc_attr( $per_page ); ?>" /> |
1186 | 1186 | <?php endif; ?> |
1187 | 1187 | <input type="hidden" name="wp_screen_options[option]" value="<?php echo esc_attr( $option ); ?>" /> |
diff --git a/src/wp-admin/includes/class-wp-terms-list-table.php b/src/wp-admin/includes/class-wp-terms-list-table.php
index 7d59624..d6a4eec 100644
a
|
b
|
public function display_rows_or_placeholder() { |
235 | 235 | $terms = get_terms( $taxonomy, $args ); |
236 | 236 | |
237 | 237 | if ( empty( $terms ) || ! is_array( $terms ) ) { |
238 | | echo '<tr class="no-items"><td class="colspanchange" colspan="' . $this->get_column_count() . '">'; |
| 238 | echo '<tr class="no-items"><td class="colspanchange">'; |
239 | 239 | $this->no_items(); |
240 | 240 | echo '</td></tr>'; |
241 | 241 | return; |