Make WordPress Core


Ignore:
Timestamp:
11/07/2013 07:04:56 PM (11 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: clean up inconsistencies in content template files. Props iamtakashi, fixes #25868.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/content-gallery.php

    r25970 r26036  
    3434            <?php twentyfourteen_posted_on(); ?>
    3535
    36             <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
     36            <?php if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) : ?>
    3737            <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyfourteen' ), __( '1 Comment', 'twentyfourteen' ), __( '% Comments', 'twentyfourteen' ) ); ?></span>
    3838            <?php endif; ?>
     
    5656    <?php if ( has_tag() ) : ?>
    5757    <footer class="entry-meta">
    58         <span class="tag-links"><?php echo get_the_tag_list(); ?></span>
     58        <span class="tag-links">
     59            <?php echo get_the_tag_list(); ?>
     60        </span>
    5961    </footer><!-- .entry-meta -->
    6062    <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.