Making WordPress.org

Ticket #1289: redux_v2_a11y.diff

File redux_v2_a11y.diff, 1.7 KB (added by pixolin, 9 years ago)

Patch to enhance a11y for WordCamp Base Theme Redux v2

  • content.php

     
    2222        </div><!-- .entry-summary -->
    2323        <?php else : ?>
    2424        <div class="entry-content">
    25                 <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wcbs' ) ); ?>
     25                <?php
     26                  // output accessible read more link
     27                        the_content( sprintf(
     28        __( 'Continue reading %s<span class="meta-nav">&rarr;</span>', 'wcbs' ),
     29        the_title( '<span class="assistive-text">', '</span> ', false )
     30        ) );
     31    ?>
    2632                <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wcbs' ), 'after' => '</div>' ) ); ?>
    2733        </div><!-- .entry-content -->
    2834        <?php endif; ?>
  • lib/utils/twentyten-functions.php

     
    231231 * @return string "Continue Reading" link
    232232 */
    233233function twentyten_continue_reading_link() {
    234         return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wordcampbase' ) . '</a>';
     234        $link = sprintf( '<a href="%1$s">%2$s</a>',
     235                                          esc_url( get_permalink() ),
     236                                          /* translators: %s: Name of current post */
     237                                          sprintf(
     238                                                  __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcampbase' ),
     239                                                        '<span class="assistive-text">' . get_the_title() . '</span> '
     240                                                )
     241                                         );
     242        return $link;
     243        // return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wordcampbase' ) . '</a>';
    235244}
    236245
    237246/**