Changeset 23820
- Timestamp:
- 03/27/2013 06:51:47 PM (12 years ago)
- Location:
- trunk/wp-content/themes/twentythirteen
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentythirteen/content-image.php
r23680 r23820 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> … … 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 --> -
trunk/wp-content/themes/twentythirteen/content-video.php
r23680 r23820 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> … … 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 --> -
trunk/wp-content/themes/twentythirteen/style.css
r23817 r23820 1660 1660 } 1661 1661 1662 .format-image .entry-header { 1663 max-width: 724px; 1664 } 1665 1666 .format-image .entry-header img { 1667 height: auto; 1668 max-width: 724px; 1669 } 1670 1662 1671 .format-image .entry-content .size-full { 1663 1672 margin: 0 -60px; … … 1872 1881 font-size: 50px; 1873 1882 font-weight: 400; 1883 } 1884 1885 .format-video .entry-header { 1886 max-width: 724px; 1874 1887 } 1875 1888
Note: See TracChangeset
for help on using the changeset viewer.