Ticket #23657: 23657.2.diff
File 23657.2.diff, 3.6 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentythirteen/content-gallery.php
31 31 <footer class="entry-meta"> 32 32 <?php twentythirteen_entry_meta(); ?> 33 33 34 <?php if ( comments_open() ) : ?>34 <?php if ( comments_open() && ! is_single() ) : ?> 35 35 <span class="comments-link"> 36 36 <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?> 37 37 </span><!-- .comments-link --> -
wp-content/themes/twentythirteen/content-image.php
27 27 <footer class="entry-meta"> 28 28 <?php twentythirteen_entry_meta(); ?> 29 29 30 <?php if ( comments_open() ) : ?>30 <?php if ( comments_open() && ! is_single() ) : ?> 31 31 <span class="comments-link"> 32 32 <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?> 33 33 </span><!-- .comments-link --> -
wp-content/themes/twentythirteen/content-quote.php
17 17 <footer class="entry-meta"> 18 18 <?php twentythirteen_entry_meta(); ?> 19 19 20 <?php if ( comments_open() ) : ?>20 <?php if ( comments_open() && ! is_single() ) : ?> 21 21 <span class="comments-link"> 22 22 <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?> 23 23 </span><!-- .comments-link --> -
wp-content/themes/twentythirteen/content-video.php
27 27 <footer class="entry-meta"> 28 28 <?php twentythirteen_entry_meta(); ?> 29 29 30 <?php if ( comments_open() ) : ?>30 <?php if ( comments_open() && ! is_single() ) : ?> 31 31 <span class="comments-link"> 32 32 <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?> 33 33 </span><!-- .comments-link --> -
wp-content/themes/twentythirteen/content.php
42 42 <?php endif; ?> 43 43 44 44 <footer class="entry-meta"> 45 <?php if ( comments_open() ) : ?>45 <?php if ( comments_open() && ! is_single() ) : ?> 46 46 <div class="comments-link"> 47 47 <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?> 48 48 </div><!-- .comments-link -->