Ticket #23620: 23620.6.diff
File 23620.6.diff, 2.5 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentythirteen/style.css
1643 1643 font-weight: bold; 1644 1644 } 1645 1645 1646 .format-image .entry-header { 1647 max-width: 724px; 1648 } 1649 1650 .format-image .entry-header img { 1651 height: auto; 1652 max-width: 724px; 1653 } 1654 1646 1655 .format-image .entry-content .size-full { 1647 1656 margin: 0 -60px; 1648 1657 max-width: 724px; … … 1854 1863 font-weight: 400; 1855 1864 } 1856 1865 1866 .format-video .entry-header { 1867 max-width: 724px; 1868 } 1869 1857 1870 .format-video .entry-meta { 1858 1871 color: #220e10; 1859 1872 } -
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 : ?> -
wp-content/themes/twentythirteen/functions.php
71 71 * See http://codex.wordpress.org/Post_Formats 72 72 */ 73 73 add_theme_support( 'structured-post-formats', array( 74 ' aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video'74 'link', 'video' 75 75 ) ); 76 76 77 add_theme_support( 'post-formats', array( 78 'aside', 'audio', 'chat', 'gallery', 'image', 'quote', 'status' 79 ) ); 80 77 81 /* 78 82 * Custom callback to make it easier for our fixed navbar to coexist with 79 83 * the WordPress toolbar. See `.wp-toolbar` in style.css. -
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 : ?>