--- a/wp/wp-content/themes/twentytwelve/content.php Tue Jun 09 11:14:17 2015 +0000
+++ b/wp/wp-content/themes/twentytwelve/content.php Mon Oct 14 17:39:30 2019 +0200
@@ -17,9 +17,11 @@
</div>
<?php endif; ?>
<header class="entry-header">
- <?php if ( ! post_password_required() && ! is_attachment() ) :
+ <?php
+ if ( ! post_password_required() && ! is_attachment() ) :
the_post_thumbnail();
- endif; ?>
+ endif;
+ ?>
<?php if ( is_single() ) : ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
@@ -42,7 +44,14 @@
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
+ <?php
+ wp_link_pages(
+ array(
+ 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ),
+ 'after' => '</div>',
+ )
+ );
+?>
</div><!-- .entry-content -->
<?php endif; ?>