Ticket #13198: twentyten-nbsp-space.patch
File twentyten-nbsp-space.patch, 2.8 KB (added by , 15 years ago) |
---|
-
wp-content/themes/twentyten/functions.php
227 227 * @return string A pretty 'Continue reading' link. 228 228 */ 229 229 function twentyten_excerpt_more( $more ) { 230 return ' … <a href="'. get_permalink() . '">' . __('Continue reading <span class="meta-nav">→</span>', 'twentyten') . '</a>';230 return ' … <a href="'. get_permalink() . '">' . __('Continue reading <span class="meta-nav">→</span>', 'twentyten') . '</a>'; 231 231 } 232 232 add_filter( 'excerpt_more', 'twentyten_excerpt_more' ); 233 233 … … 268 268 <br /> 269 269 <?php endif; ?> 270 270 271 <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(), get_comment_time() ); ?></a> <?php edit_comment_link( __( '(Edit)', 'twentyten' ),' ',''); ?></div>271 <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(), get_comment_time() ); ?></a> <?php edit_comment_link( __( '(Edit)', 'twentyten' ) ); ?></div> 272 272 273 273 <div class="comment-body"><?php comment_text(); ?></div> 274 274 … … 279 279 280 280 <?php else : ?> 281 281 <li class="post pingback"> 282 <p><?php _e( 'Pingback: ', 'twentyten' ); ?><?php comment_author_link(); ?> <?php edit_comment_link ( __('edit', 'twentyten'), ' ', ''); ?></p>282 <p><?php _e( 'Pingback: ', 'twentyten' ); ?><?php comment_author_link(); ?> <?php edit_comment_link( __('edit', 'twentyten') ); ?></p> 283 283 <?php endif; 284 284 } 285 285 endif; -
wp-content/themes/twentyten/loop.php
91 91 </div><!-- .entry-summary --> 92 92 <?php else : ?> 93 93 <div class="entry-content"> 94 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>94 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 95 95 </div><!-- .entry-content --> 96 96 <?php endif; ?> 97 97 … … 136 136 </div><!-- .entry-summary --> 137 137 <?php else : ?> 138 138 <div class="entry-content"> 139 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>139 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 140 140 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> 141 141 </div><!-- .entry-content --> 142 142 <?php endif; ?>