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 717e84fb9a..60e9198527 100644
a
|
b
|
class WP_Posts_List_Table extends WP_List_Table { |
1117 | 1117 | } else { |
1118 | 1118 | |
1119 | 1119 | /** This filter is documented in wp-admin/includes/class-wp-posts-list-table.php */ |
1120 | | echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post, 'date', $mode ) . '</abbr>'; |
| 1120 | echo '<abbr>' . apply_filters( 'post_date_column_time', $h_time, $post, 'date', $mode ) . '</abbr>'; |
1121 | 1121 | } |
1122 | 1122 | } |
1123 | 1123 | |
diff --git a/src/wp-includes/customize/class-wp-customize-date-time-control.php b/src/wp-includes/customize/class-wp-customize-date-time-control.php
index 6325194395..ab3e44ad2d 100644
a
|
b
|
class WP_Customize_Date_Time_Control extends WP_Customize_Control { |
173 | 173 | <option value="pm"><?php esc_html_e( 'PM' ); ?></option> |
174 | 174 | </select> |
175 | 175 | <# } #> |
176 | | <abbr class="date-timezone" aria-label="<?php esc_attr_e( 'Timezone' ); ?>" title="<?php echo esc_attr( $timezone_info['description'] ); ?>"><?php echo esc_html( $timezone_info['abbr'] ); ?></abbr> |
| 176 | <abbr class="date-timezone" aria-label="<?php esc_attr_e( 'Timezone' ); ?>"><?php echo esc_html( $timezone_info['abbr'] ); ?></abbr> |
177 | 177 | </div> |
178 | 178 | </fieldset> |
179 | 179 | <# } #> |
diff --git a/src/wp-includes/widgets/class-wp-widget-meta.php b/src/wp-includes/widgets/class-wp-widget-meta.php
index 320ab138d4..86aaede23c 100644
a
|
b
|
class WP_Widget_Meta extends WP_Widget { |
56 | 56 | <ul> |
57 | 57 | <?php wp_register(); ?> |
58 | 58 | <li><?php wp_loginout(); ?></li> |
59 | | <li><a href="<?php echo esc_url( get_bloginfo( 'rss2_url' ) ); ?>"><?php _e( 'Entries <abbr title="Really Simple Syndication">RSS</abbr>' ); ?></a></li> |
60 | | <li><a href="<?php echo esc_url( get_bloginfo( 'comments_rss2_url' ) ); ?>"><?php _e( 'Comments <abbr title="Really Simple Syndication">RSS</abbr>' ); ?></a></li> |
| 59 | <li><a href="<?php echo esc_url( get_bloginfo( 'rss2_url' ) ); ?>"><?php _e( 'Entries <abbr>RSS</abbr>' ); ?></a></li> |
| 60 | <li><a href="<?php echo esc_url( get_bloginfo( 'comments_rss2_url' ) ); ?>"><?php _e( 'Comments <abbr>RSS</abbr>' ); ?></a></li> |
61 | 61 | <?php |
62 | 62 | /** |
63 | 63 | * Filters the "Powered by WordPress" text in the Meta widget. |