diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-content/themes/twentyfourteen/content-gallery.php --- a/wp/wp-content/themes/twentyfourteen/content-gallery.php Tue Jun 09 11:14:17 2015 +0000 +++ b/wp/wp-content/themes/twentyfourteen/content-gallery.php Mon Oct 14 17:39:30 2019 +0200 @@ -19,8 +19,8 @@ ', '' ); +if ( is_single() ) : + the_title( '

', '

' ); else : the_title( '

', '

' ); endif; @@ -44,17 +44,21 @@
→', 'twentyfourteen' ), - the_title( '', '', false ) - ) ); + the_content( + sprintf( + __( 'Continue reading %s ', 'twentyfourteen' ), + the_title( '', '', false ) + ) + ); - wp_link_pages( array( - 'before' => '', - 'link_before' => '', - 'link_after' => '', - ) ); + wp_link_pages( + array( + 'before' => '', + 'link_before' => '', + 'link_after' => '', + ) + ); ?>