Ticket #23620: 23620.7.diff
File 23620.7.diff, 2.8 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentythirteen/style.css
1653 1653 font-weight: bold; 1654 1654 } 1655 1655 1656 .format-image .entry-header { 1657 max-width: 724px; 1658 } 1659 1660 .format-image .entry-header img { 1661 height: auto; 1662 max-width: 724px; 1663 } 1664 1656 1665 .format-image .entry-content .size-full { 1657 1666 margin: 0 -60px; 1658 1667 max-width: 724px; … … 1867 1876 font-weight: 400; 1868 1877 } 1869 1878 1879 .format-video .entry-header { 1880 max-width: 724px; 1881 } 1882 1870 1883 .format-video .entry-meta { 1871 1884 color: #220e10; 1872 1885 } -
wp-content/themes/twentythirteen/content-image.php
10 10 11 11 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 12 12 <header class="entry-header"> 13 <div class="entry-media"> 14 <?php the_image(); ?> 15 </div> 16 13 17 <?php if ( is_single() ) : ?> 14 18 <h1 class="entry-title"><?php the_title(); ?></h1> 15 19 <?php else : ?> … … 20 24 </header><!-- .entry-header --> 21 25 22 26 <div class="entry-content"> 23 <?php the_ content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>27 <?php the_extra_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?> 24 28 <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?> 25 29 </div><!-- .entry-content --> 26 30 -
wp-content/themes/twentythirteen/content-video.php
10 10 11 11 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 12 12 <header class="entry-header"> 13 <div class="entry-media"> 14 <?php the_video(); ?> 15 </div> 16 13 17 <?php if ( is_single() ) : ?> 14 18 <h1 class="entry-title"><?php the_title(); ?></h1> 15 19 <?php else : ?> … … 20 24 </header><!-- .entry-header --> 21 25 22 26 <div class="entry-content"> 23 <?php the_ content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>27 <?php the_extra_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?> 24 28 <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?> 25 29 </div><!-- .entry-content --> 26 30