Ticket #17362: 17362.patch
File 17362.patch, 31.3 KB (added by , 13 years ago) |
---|
-
wp-content/themes/twentyeleven/image.php
15 15 <?php the_post(); ?> 16 16 17 17 <nav id="nav-single"> 18 <span class="nav-previous"><?php previous_image_link( false, __( '& larr; Previous' , 'twentyeleven' ) ); ?></span>19 <span class="nav-next"><?php next_image_link( false, __( 'Next & rarr;' , 'twentyeleven' ) ); ?></span>18 <span class="nav-previous"><?php previous_image_link( false, __( '← Previous' , 'twentyeleven' ) ); ?></span> 19 <span class="nav-next"><?php next_image_link( false, __( 'Next →' , 'twentyeleven' ) ); ?></span> 20 20 </nav><!-- #nav-single --> 21 21 22 22 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> … … 26 26 <div class="entry-meta"> 27 27 <?php 28 28 $metadata = wp_get_attachment_metadata(); 29 printf( __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span> at <a href="%3$s" title="Link to full-size image">%4$s & times; %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%7$s</a>', 'twentyeleven' ),29 printf( __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%7$s</a>', 'twentyeleven' ), 30 30 esc_attr( get_the_time() ), 31 31 get_the_date(), 32 32 wp_get_attachment_url(), -
wp-content/themes/twentyeleven/comments.php
30 30 <?php if ( have_comments() ) : ?> 31 31 <h2 id="comments-title"> 32 32 <?php 33 printf( _n( 'One thought on & ldquo;%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentyeleven' ),33 printf( _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentyeleven' ), 34 34 number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' ); 35 35 ?> 36 36 </h2> … … 38 38 <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 39 39 <nav id="comment-nav-above"> 40 40 <h1 class="section-heading"><?php _e( 'Comment navigation', 'twentyeleven' ); ?></h1> 41 <div class="nav-previous"><?php previous_comments_link( __( '& larr; Older Comments', 'twentyeleven' ) ); ?></div>42 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments & rarr;', 'twentyeleven' ) ); ?></div>41 <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentyeleven' ) ); ?></div> 42 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentyeleven' ) ); ?></div> 43 43 </nav> 44 44 <?php endif; // check for comment navigation ?> 45 45 … … 58 58 <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 59 59 <nav id="comment-nav-below"> 60 60 <h1 class="section-heading"><?php _e( 'Comment navigation', 'twentyeleven' ); ?></h1> 61 <div class="nav-previous"><?php previous_comments_link( __( '& larr; Older Comments', 'twentyeleven' ) ); ?></div>62 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments & rarr;', 'twentyeleven' ) ); ?></div>61 <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentyeleven' ) ); ?></div> 62 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentyeleven' ) ); ?></div> 63 63 </nav> 64 64 <?php endif; // check for comment navigation ?> 65 65 -
wp-content/themes/twentyeleven/content-featured.php
15 15 16 16 <div class="entry-meta"> 17 17 <?php 18 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate >%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),18 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate="pubdate">%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ), 19 19 get_permalink(), 20 20 get_the_date( 'c' ), 21 21 get_the_date(), -
wp-content/themes/twentyeleven/single.php
16 16 17 17 <nav id="nav-single"> 18 18 <h1 class="section-heading"><?php _e( 'Post navigation', 'toolbox' ); ?></h1> 19 <span class="nav-previous"><?php previous_post_link( '%link', __( '& larr; Previous', 'twentyeleven' ) ); ?></span>20 <span class="nav-next"><?php next_post_link( '%link', __( 'Next & rarr;', 'twentyeleven' ) ); ?></span>19 <span class="nav-previous"><?php previous_post_link( '%link', __( '← Previous', 'twentyeleven' ) ); ?></span> 20 <span class="nav-next"><?php next_post_link( '%link', __( 'Next →', 'twentyeleven' ) ); ?></span> 21 21 </nav><!-- #nav-single --> 22 22 23 23 <?php get_template_part( 'content', 'single' ); ?> -
wp-content/themes/twentyeleven/content.php
22 22 <?php if ( 'post' == $post->post_type ) : ?> 23 23 <div class="entry-meta"> 24 24 <?php 25 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate >%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),25 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate="pubdate">%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ), 26 26 get_permalink(), 27 27 get_the_date( 'c' ), 28 28 get_the_date(), … … 43 43 44 44 <?php if ( is_search() ) : // Only display Excerpts for Search ?> 45 45 <div class="entry-summary"> 46 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>46 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 47 47 </div><!-- .entry-summary --> 48 48 <?php else : ?> 49 49 <div class="entry-content"> 50 <?php the_content( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>50 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 51 51 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( '<span>Pages:</span>', 'twentyeleven' ), 'after' => '</div>' ) ); ?> 52 52 </div><!-- .entry-content --> 53 53 <?php endif; ?> -
wp-content/themes/twentyeleven/content-gallery.php
19 19 20 20 <div class="entry-meta"> 21 21 <?php 22 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate >%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),22 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate="pubdate">%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ), 23 23 get_permalink(), 24 24 get_the_date( 'c' ), 25 25 get_the_date(), … … 33 33 34 34 <?php if ( is_search() ) : // Only display Excerpts for search pages ?> 35 35 <div class="entry-summary"> 36 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>36 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 37 37 </div><!-- .entry-summary --> 38 38 <?php else : ?> 39 39 <div class="entry-content"> 40 40 <?php if ( post_password_required() ) : ?> 41 <?php the_content( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>41 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 42 42 43 43 <?php else : ?> 44 44 <?php -
wp-content/themes/twentyeleven/content-link.php
29 29 30 30 <?php if ( is_search() ) : // Only display Excerpts for Search ?> 31 31 <div class="entry-summary"> 32 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>32 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 33 33 </div><!-- .entry-summary --> 34 34 <?php else : ?> 35 35 <div class="entry-content"> 36 <?php the_content( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>36 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 37 37 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyeleven' ), 'after' => '</div>' ) ); ?> 38 38 </div><!-- .entry-content --> 39 39 <?php endif; ?> 40 40 41 41 <footer class="entry-meta"> 42 42 <?php 43 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate >%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),43 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate="pubdate">%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ), 44 44 get_permalink(), 45 45 get_the_date( 'c' ), 46 46 get_the_date(), -
wp-content/themes/twentyeleven/content-aside.php
29 29 30 30 <?php if ( is_search() ) : // Only display Excerpts for Search ?> 31 31 <div class="entry-summary"> 32 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>32 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 33 33 </div><!-- .entry-summary --> 34 34 <?php else : ?> 35 35 <div class="entry-content"> 36 <?php the_content( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>36 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 37 37 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyeleven' ), 'after' => '</div>' ) ); ?> 38 38 </div><!-- .entry-content --> 39 39 <?php endif; ?> 40 40 41 41 <footer class="entry-meta"> 42 42 <?php 43 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate >%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),43 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate="pubdate">%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ), 44 44 get_permalink(), 45 45 get_the_date( 'c' ), 46 46 get_the_date(), -
wp-content/themes/twentyeleven/functions.php
325 325 * Returns a "Continue Reading" link for excerpts 326 326 */ 327 327 function twentyeleven_continue_reading_link() { 328 return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) . '</a>';328 return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) . '</a>'; 329 329 } 330 330 331 331 /** … … 335 335 * function tied to the excerpt_more filter hook. 336 336 */ 337 337 function twentyeleven_auto_excerpt_more( $more ) { 338 return ' & hellip;' . twentyeleven_continue_reading_link();338 return ' …' . twentyeleven_continue_reading_link(); 339 339 } 340 340 add_filter( 'excerpt_more', 'twentyeleven_auto_excerpt_more' ); 341 341 … … 442 442 if ( $wp_query->max_num_pages > 1 ) : ?> 443 443 <nav id="<?php echo $nav_id; ?>"> 444 444 <h1 class="section-heading"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h1> 445 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">& larr;</span> Older posts', 'twentyeleven' ) ); ?></div>446 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?></div>445 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyeleven' ) ); ?></div> 446 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></div> 447 447 </nav><!-- #nav-above --> 448 448 <?php endif; 449 449 } … … 538 538 539 539 printf( __( '%1$s on %2$s%3$s at %4$s%5$s <span class="says">said:</span>', 'twentyeleven' ), 540 540 sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ), 541 '<a href="' . esc_url( get_comment_link( $comment->comment_ID ) ) . '"><time pubdate datetime="' . get_comment_time( 'c' ) . '">',541 '<a href="' . esc_url( get_comment_link( $comment->comment_ID ) ) . '"><time pubdate="pubdate" datetime="' . get_comment_time( 'c' ) . '">', 542 542 get_comment_date(), 543 543 get_comment_time(), 544 544 '</time></a>' … … 558 558 <div class="comment-content"><?php comment_text(); ?></div> 559 559 560 560 <div class="reply"> 561 <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply & darr;', 'twentyeleven' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>561 <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply ↓', 'twentyeleven' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 562 562 </div><!-- .reply --> 563 563 </article><!-- #comment-## --> 564 564 -
wp-content/themes/twentyeleven/404.php
14 14 15 15 <article id="post-0" class="post error404 not-found"> 16 16 <header class="entry-header"> 17 <h1 class="entry-title"><?php _e( 'This is somewhat embarrassing, isn& rsquo;t it?', 'twentyeleven' ); ?></h1>17 <h1 class="entry-title"><?php _e( 'This is somewhat embarrassing, isn’t it?', 'twentyeleven' ); ?></h1> 18 18 </header> 19 19 20 20 <div class="entry-content"> 21 <p><?php _e( 'It seems we can& rsquo;t find what you’re looking for. Perhaps searching, or one of the links below, can help.', 'twentyeleven' ); ?></p>21 <p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching, or one of the links below, can help.', 'twentyeleven' ); ?></p> 22 22 23 23 <?php get_search_form(); ?> 24 24 -
wp-content/themes/twentyeleven/languages/twentyeleven.pot
24 24 #: content-link.php:43 content-featured.php:18 25 25 msgid "" 26 26 "<span class=\"sep\">Posted on </span><a href=\"%1$s\" rel=\"bookmark\"><time " 27 "class=\"entry-date\" datetime=\"%2$s\" pubdate >%3$s</time></a> <span class="27 "class=\"entry-date\" datetime=\"%2$s\" pubdate="pubdate">%3$s</time></a> <span class=" 28 28 "\"sep\"> by </span> <span class=\"author vcard\"><a class=\"url fn n\" href=" 29 29 "\"%4$s\" title=\"%5$s\">%6$s</a></span>" 30 30 msgstr "" … … 55 55 #: content-gallery.php:41 content-aside.php:32 content-aside.php:36 56 56 #: functions.php:324 content-status.php:31 content-status.php:37 57 57 #: content-link.php:32 content-link.php:36 58 msgid "Continue reading <span class=\"meta-nav\">& rarr;</span>"58 msgid "Continue reading <span class=\"meta-nav\">→</span>" 59 59 msgstr "" 60 60 61 61 #: content-quote.php:47 content.php:51 content-image.php:34 … … 124 124 #: content-image.php:42 125 125 msgid "" 126 126 "<a href=\"%1$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%2$s" 127 "\" pubdate >%3$s</time></a> <span class=\"sep\"> by </span> <span class="127 "\" pubdate="pubdate">%3$s</time></a> <span class=\"sep\"> by </span> <span class=" 128 128 "\"author vcard\"><a class=\"url fn n\" href=\"%4$s\" title=\"%5$s\">%6$s</" 129 129 "a></span>" 130 130 msgstr "" … … 159 159 msgstr "" 160 160 161 161 #: content-single.php:64 162 msgid "View all posts by %s <span class=\"meta-nav\">& rarr;</span>"162 msgid "View all posts by %s <span class=\"meta-nav\">→</span>" 163 163 msgstr "" 164 164 165 165 #: content-intro.php:18 content-gallery.php:63 content-aside.php:37 … … 184 184 msgstr "" 185 185 186 186 #: comments.php:33 187 msgid "One thought on & ldquo;%2$s”"188 msgid_plural "%1$s thoughts on & ldquo;%2$s”"187 msgid "One thought on “%2$s”" 188 msgid_plural "%1$s thoughts on “%2$s”" 189 189 msgstr[0] "" 190 190 msgstr[1] "" 191 191 … … 194 194 msgstr "" 195 195 196 196 #: comments.php:41 comments.php:61 197 msgid "& larr; Older Comments"197 msgid "← Older Comments" 198 198 msgstr "" 199 199 200 200 #: comments.php:42 comments.php:62 201 msgid "Newer Comments & rarr;"201 msgid "Newer Comments →" 202 202 msgstr "" 203 203 204 204 #: comments.php:78 … … 206 206 msgstr "" 207 207 208 208 #: 404.php:17 209 msgid "This is somewhat embarrassing, isn& rsquo;t it?"209 msgid "This is somewhat embarrassing, isn’t it?" 210 210 msgstr "" 211 211 212 212 #: 404.php:21 213 213 msgid "" 214 "It seems we can& rsquo;t find what you’re looking for. Perhaps "214 "It seems we can’t find what you’re looking for. Perhaps " 215 215 "searching, or one of the links below, can help." 216 216 msgstr "" 217 217 … … 224 224 msgstr "" 225 225 226 226 #: image.php:18 single.php:19 227 msgid "& larr; Previous"227 msgid "← Previous" 228 228 msgstr "" 229 229 230 230 #: image.php:19 single.php:20 231 msgid "Next & rarr;"231 msgid "Next →" 232 232 msgstr "" 233 233 234 234 #: image.php:29 235 235 msgid "" 236 236 "<span class=\"meta-prep meta-prep-entry-date\">Published </span> <span class=" 237 237 "\"entry-date\"><abbr class=\"published\" title=\"%1$s\">%2$s</abbr></span> " 238 "at <a href=\"%3$s\" title=\"Link to full-size image\">%4$s & times; %5$s</a> "238 "at <a href=\"%3$s\" title=\"Link to full-size image\">%4$s × %5$s</a> " 239 239 "in <a href=\"%6$s\" title=\"Return to %7$s\" rel=\"gallery\">%7$s</a>" 240 240 msgstr "" 241 241 … … 332 332 msgstr "" 333 333 334 334 #: functions.php:441 335 msgid "<span class=\"meta-nav\">& larr;</span> Older posts"335 msgid "<span class=\"meta-nav\">←</span> Older posts" 336 336 msgstr "" 337 337 338 338 #: functions.php:442 339 msgid "Newer posts <span class=\"meta-nav\">& rarr;</span>"339 msgid "Newer posts <span class=\"meta-nav\">→</span>" 340 340 msgstr "" 341 341 342 342 #: functions.php:519 … … 360 360 msgstr "" 361 361 362 362 #: functions.php:557 363 msgid "Reply & darr;"363 msgid "Reply ↓" 364 364 msgstr "" 365 365 366 366 #: header.php:45 … … 443 443 msgstr "" 444 444 445 445 #: inc/widgets.php:94 inc/widgets.php:109 446 msgid "0 <span class=\"reply\">comments & rarr;</span>"446 msgid "0 <span class=\"reply\">comments →</span>" 447 447 msgstr "" 448 448 449 449 #: inc/widgets.php:94 inc/widgets.php:109 450 msgid "1 <span class=\"reply\">comment & rarr;</span>"450 msgid "1 <span class=\"reply\">comment →</span>" 451 451 msgstr "" 452 452 453 453 #: inc/widgets.php:94 inc/widgets.php:109 454 msgid "% <span class=\"reply\">comments & rarr;</span>"454 msgid "% <span class=\"reply\">comments →</span>" 455 455 msgstr "" 456 456 457 457 #: inc/widgets.php:107 -
wp-content/themes/twentyeleven/content-image.php
26 26 27 27 <?php if ( is_search() ) : // Only display Excerpts for Search ?> 28 28 <div class="entry-summary"> 29 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>29 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 30 30 </div><!-- .entry-summary --> 31 31 <?php else : ?> 32 32 <div class="entry-content"> 33 <?php the_content( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>33 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 34 34 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( '<span>Pages:</span>', 'twentyeleven' ), 'after' => '</div>' ) ); ?> 35 35 </div><!-- .entry-content --> 36 36 <?php endif; ?> … … 39 39 <?php if ( 'post' == $post->post_type ) : // Hide category and tag text for pages on Search ?> 40 40 <div class="entry-meta"> 41 41 <?php 42 printf( __( '<a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate >%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),42 printf( __( '<a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate="pubdate">%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ), 43 43 get_permalink(), 44 44 get_the_date( 'c' ), 45 45 get_the_date(), -
wp-content/themes/twentyeleven/content-single.php
14 14 15 15 <div class="entry-meta"> 16 16 <?php 17 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate >%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),17 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate="pubdate">%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ), 18 18 get_permalink(), 19 19 get_the_date( 'c' ), 20 20 get_the_date(), … … 61 61 <?php the_author_meta( 'description' ); ?> 62 62 <div id="author-link"> 63 63 <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"> 64 <?php printf( __( 'View all posts by %s <span class="meta-nav">& rarr;</span>', 'twentyeleven' ), get_the_author() ); ?>64 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentyeleven' ), get_the_author() ); ?> 65 65 </a> 66 66 </div><!-- #author-link --> 67 67 </div><!-- #author-description --> -
wp-content/themes/twentyeleven/inc/widgets.php
91 91 <li class="widget-entry-title"> 92 92 <a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a> 93 93 <span class="comments-link"> 94 <?php comments_popup_link( __( '0 <span class="reply">comments & rarr;</span>', 'twentyeleven' ), __( '1 <span class="reply">comment →</span>', 'twentyeleven' ), __( '% <span class="reply">comments →</span>', 'twentyeleven' ) ); ?>94 <?php comments_popup_link( __( '0 <span class="reply">comments →</span>', 'twentyeleven' ), __( '1 <span class="reply">comment →</span>', 'twentyeleven' ), __( '% <span class="reply">comments →</span>', 'twentyeleven' ) ); ?> 95 95 </span> 96 96 </li> 97 97 … … 104 104 if ( false != twentyeleven_url_grabber() ) 105 105 $link_url = twentyeleven_url_grabber(); 106 106 ?> 107 <a href="<?php echo esc_url( $link_url ); ?>" title="<?php printf( esc_attr__( 'Link to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?> <span>& rarr;</span></a>107 <a href="<?php echo esc_url( $link_url ); ?>" title="<?php printf( esc_attr__( 'Link to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?> <span>→</span></a> 108 108 <span class="comments-link"> 109 <?php comments_popup_link( __( '0 <span class="reply">comments & rarr;</span>', 'twentyeleven' ), __( '1 <span class="reply">comment →</span>', 'twentyeleven' ), __( '% <span class="reply">comments →</span>', 'twentyeleven' ) ); ?>109 <?php comments_popup_link( __( '0 <span class="reply">comments →</span>', 'twentyeleven' ), __( '1 <span class="reply">comment →</span>', 'twentyeleven' ), __( '% <span class="reply">comments →</span>', 'twentyeleven' ) ); ?> 110 110 </span> 111 111 </li> 112 112 -
wp-content/themes/twentyeleven/inc/theme-options.php
193 193 <fieldset><legend class="screen-reader-text"><span><?php _e( 'Link Color', 'twentyeleven' ); ?></span></legend> 194 194 <input type="text" name="twentyeleven_theme_options[link_color]" id="link-color" value="<?php echo esc_attr( $options['link_color'] ); ?>" /> 195 195 <a href="#" class="pickcolor hide-if-no-js" id="link-color-example"></a> 196 <input type="button" class="pickcolor button hide-if-no-js" value="<?php esc_attr_e( 'Select a Color', 'twentyeleven' ); ?>" >196 <input type="button" class="pickcolor button hide-if-no-js" value="<?php esc_attr_e( 'Select a Color', 'twentyeleven' ); ?>" /> 197 197 <div id="colorPickerDiv" style="z-index: 100; background:#eee; border:1px solid #ccc; position:absolute; display:none;"></div> 198 198 <br /> 199 199 <small class="description"><?php printf( __( 'Default color: %s', 'twentyeleven' ), $default_options['link_color'] ); ?></small> -
wp-content/themes/twentyeleven/content-status.php
28 28 29 29 <?php if ( is_search() ) : // Only display Excerpts for Search ?> 30 30 <div class="entry-summary"> 31 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>31 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 32 32 </div><!-- .entry-summary --> 33 33 <?php else : ?> 34 34 <div class="entry-content"> 35 35 <div class="avatar"><?php echo get_avatar( $post->post_author, apply_filters( 'twentyeleven_status_avatar', '65' ) ); ?></div> 36 36 37 <?php the_content( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>37 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 38 38 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyeleven' ), 'after' => '</div>' ) ); ?> 39 39 </div><!-- .entry-content --> 40 40 <?php endif; ?> 41 41 42 42 <footer class="entry-meta"> 43 43 <?php 44 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate >%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),44 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate="pubdate">%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ), 45 45 get_permalink(), 46 46 get_the_date( 'c' ), 47 47 get_the_date(), -
wp-content/themes/twentyeleven/content-quote.php
18 18 <?php if ( 'post' == $post->post_type ) : ?> 19 19 <div class="entry-meta"> 20 20 <?php 21 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate >%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),21 printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate="pubdate">%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ), 22 22 get_permalink(), 23 23 get_the_date( 'c' ), 24 24 get_the_date(), … … 39 39 40 40 <?php if ( is_search() ) : // Only display Excerpts for Search ?> 41 41 <div class="entry-summary"> 42 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>42 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 43 43 </div><!-- .entry-summary --> 44 44 <?php else : ?> 45 45 <div class="entry-content"> 46 <?php the_content( __( 'Continue reading <span class="meta-nav">& rarr;</span>', 'twentyeleven' ) ); ?>46 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> 47 47 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( '<span>Pages:</span>', 'twentyeleven' ), 'after' => '</div>' ) ); ?> 48 48 </div><!-- .entry-content --> 49 49 <?php endif; ?>