Changeset 42343 for trunk/src/wp-content/themes/twentytwelve/content.php
- Timestamp:
- 11/30/2017 11:09:33 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/content.php
r27331 r42343 18 18 <?php endif; ?> 19 19 <header class="entry-header"> 20 <?php if ( ! post_password_required() && ! is_attachment() ) : 20 <?php 21 if ( ! post_password_required() && ! is_attachment() ) : 21 22 the_post_thumbnail(); 22 endif; ?> 23 endif; 24 ?> 23 25 24 26 <?php if ( is_single() ) : ?> … … 43 45 <div class="entry-content"> 44 46 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?> 45 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?> 47 <?php 48 wp_link_pages( 49 array( 50 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 51 'after' => '</div>', 52 ) 53 ); 54 ?> 46 55 </div><!-- .entry-content --> 47 56 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.