Make WordPress Core

Ticket #36572: 36572.diff

File 36572.diff, 597 bytes (added by Kau-Boy, 9 years ago)

patch using the CSS class

  • wp-includes/post-template.php

     
    263263        $post = get_post();
    264264
    265265        if ( null === $more_link_text )
    266                 $more_link_text = __( '(more…)' );
     266                /* translators: %s: Name of current post */
     267                $more_link_text = sprintf(
     268                        __( '<span class="screen-reader-text">Continue reading %s</span><span aria-hidden="true">(more&hellip;)</span>' ),
     269                        get_the_title()
     270                );
    267271
    268272        $output = '';
    269273        $has_teaser = false;