Ticket #13198: 13198-wrap-arrow-with-span-meta-nav.diff
File 13198-wrap-arrow-with-span-meta-nav.diff, 3.4 KB (added by , 15 years ago) |
---|
-
wp-content/themes/twentyten/single.php
42 42 <?php the_author_meta( 'description' ); ?> 43 43 <div id="author-link"> 44 44 <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"> 45 <?php printf( __( 'View all posts by %s →', 'twentyten' ), get_the_author() ); ?>45 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentyten' ), get_the_author() ); ?> 46 46 </a> 47 47 </div><!-- #author-link --> 48 48 </div><!-- #author-description --> -
wp-content/themes/twentyten/comments.php
38 38 39 39 <?php if ( get_comment_pages_count() > 1 ) : // Are there comments to navigate through? ?> 40 40 <div class="navigation"> 41 <div class="nav-previous"><?php previous_comments_link( __( ' ←Older Comments', 'twentyten' ) ); ?></div>42 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentyten' ) ); ?></div>41 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">←</span> Older Comments', 'twentyten' ) ); ?></div> 42 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div> 43 43 </div> <!-- .navigation --> 44 44 <?php endif; // check for comment navigation ?> 45 45 … … 57 57 58 58 <?php if ( get_comment_pages_count() > 1 ) : // Are there comments to navigate through? ?> 59 59 <div class="navigation"> 60 <div class="nav-previous"><?php previous_comments_link( __( ' ←Older Comments', 'twentyten' ) ); ?></div>61 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentyten' ) ); ?></div>60 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">←</span> Older Comments', 'twentyten' ) ); ?></div> 61 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div> 62 62 </div><!-- .navigation --> 63 63 <?php endif; // check for comment navigation ?> 64 64 -
wp-content/themes/twentyten/attachment.php
15 15 16 16 <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> 17 17 18 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'twentyten' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"> ←<?php echo get_the_title( $post->post_parent ); ?></a></p>18 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'twentyten' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><span class="meta-nav">←</span> <?php echo get_the_title( $post->post_parent ); ?></a></p> 19 19 20 20 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 21 21 <h2 class="entry-title"><?php the_title(); ?></h2>