Make WordPress Core

Ticket #21462: 21462.diff

File 21462.diff, 1.3 KB (added by obenland, 12 years ago)
  • wp-content/themes/twentytwelve/style.css

     
    761761        line-height: 1.846153846;
    762762}
    763763.entry-content p,
     764.entry-summary p,
    764765.comment-content p {
    765766        margin: 0 0 24px;
    766767        margin: 0 0 1.714285714rem;
  • wp-content/themes/twentytwelve/content.php

     
    3030                        <?php endif; // comments_open() ?>
    3131                </header><!-- .entry-header -->
    3232
     33                <?php if ( is_search() ) : // Only display Excerpts for Search ?>
     34                <div class="entry-summary">
     35                        <?php the_excerpt(); ?>
     36                </div><!-- .entry-summary -->
     37                <?php else : ?>
    3338                <div class="entry-content">
    3439                        <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
    3540                        <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
    3641                </div><!-- .entry-content -->
     42                <?php endif; ?>
    3743
    3844                <footer class="entry-meta">
    3945                        <?php twentytwelve_entry_meta(); ?>