Ticket #13198: twentyten-coding-standard-spacing-comment-loop.php.patch
File twentyten-coding-standard-spacing-comment-loop.php.patch, 1.8 KB (added by , 15 years ago) |
---|
-
wp-content/themes/twentyten/loop.php
85 85 <?php /* How to display posts in the asides category */ ?> 86 86 <?php elseif ( in_category( 'asides' ) ) : ?> 87 87 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 88 <?php if ( is_archive() || is_search() ) : // Only display Excerpts for archives & search ?>88 <?php if ( is_archive() || is_search() ) : // Only display Excerpts for archives & search ?> 89 89 <div class="entry-summary"> 90 90 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 91 91 </div><!-- .entry-summary --> … … 130 130 ?> 131 131 </div><!-- .entry-meta --> 132 132 133 <?php if ( is_archive() || is_search() ) : // Only display Excerpts for archives & search ?>133 <?php if ( is_archive() || is_search() ) : // Only display Excerpts for archives & search ?> 134 134 <div class="entry-summary"> 135 135 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 136 136 </div><!-- .entry-summary --> … … 148 148 <?php if ( ! empty( $tags_text ) ) : ?> 149 149 <span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links"><?php echo $tags_text; ?></span></span> 150 150 <span class="meta-sep"> | </span> 151 <?php endif; // $tags_text ?>151 <?php endif; // $tags_text ?> 152 152 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> 153 153 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 154 154 </div><!-- #entry-utility -->