Ticket #36572: 36572-inline-styles.diff
File 36572-inline-styles.diff, 743 bytes (added by , 9 years ago) |
---|
-
wp-includes/post-template.php
263 263 $post = get_post(); 264 264 265 265 if ( null === $more_link_text ) 266 $more_link_text = __( '(more…)' ); 266 /* translators: 1: Inline CSS to hide the screen reader text, 2: Name of current post */ 267 $more_link_text = sprintf( 268 __( '<span style="%1$s">Continue reading %2$s</span><span aria-hidden="true">(more…)</span>' ), 269 'clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden; position: absolute !important; width: 1px;', 270 get_the_title() 271 ); 267 272 268 273 $output = ''; 269 274 $has_teaser = false;