Changeset 23621
- Timestamp:
- 03/05/2013 09:44:38 PM (12 years ago)
- Location:
- trunk/wp-content/themes/twentythirteen
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentythirteen/content-gallery.php
r23452 r23621 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' ) ); ?> -
trunk/wp-content/themes/twentythirteen/content-image.php
r23469 r23621 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' ) ); ?> -
trunk/wp-content/themes/twentythirteen/content-quote.php
r23452 r23621 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' ) ); ?> -
trunk/wp-content/themes/twentythirteen/content-video.php
r23452 r23621 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' ) ); ?> -
trunk/wp-content/themes/twentythirteen/content.php
r23463 r23621 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' ) ); ?>
Note: See TracChangeset
for help on using the changeset viewer.