Make WordPress Core

Ticket #23620: 23620.9.diff

File 23620.9.diff, 4.1 KB (added by obenland, 12 years ago)
  • wp-content/themes/twentythirteen/content-image.php

     
    99?>
    1010
    1111<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    12         <header class="entry-header">
    13                 <div class="entry-media">
    14                         <?php the_image(); ?>
    15                 </div>
     12        <div class="entry-media">
     13                <?php the_image( 'twentythirteen-image-post-format' ); ?>
     14        </div><!-- .entry-media -->
    1615
     16        <header class="entry-header">
    1717                <?php if ( is_single() ) : ?>
    1818                <h1 class="entry-title"><?php the_title(); ?></h1>
    1919                <?php else : ?>
  • wp-content/themes/twentythirteen/content-video.php

     
    99?>
    1010
    1111<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    12         <header class="entry-header">
    13                 <div class="entry-media">
    14                         <?php the_video(); ?>
    15                 </div>
     12        <div class="entry-media">
     13                <?php the_video(); ?>
     14        </div><!-- .entry-media -->
    1615
     16        <header class="entry-header">
    1717                <?php if ( is_single() ) : ?>
    1818                <h1 class="entry-title"><?php the_title(); ?></h1>
    1919                <?php else : ?>
  • wp-content/themes/twentythirteen/style.css

     
    14081408 * ----------------------------------------------------------------------------
    14091409 */
    14101410
     1411.entry-media {
     1412        margin: 0 auto 24px;
     1413        max-width: 724px;
     1414        width: 100%;
     1415}
     1416
     1417.sidebar .entry-media {
     1418        max-width: 1040px;
     1419        padding: 0 316px 0 0;
     1420}
     1421.entry-media > * {
     1422        display: block;
     1423        margin: 0 auto;
     1424        max-width: 100%;
     1425}
     1426
    14111427/* Aside */
    14121428.format-aside {
    14131429        background-color: #f7f5e7;
     
    14691485}
    14701486
    14711487.format-audio .entry-media {
    1472         margin: 0 auto 24px;
    14731488        max-width: 604px;
    1474         width: 100%;
    14751489}
    14761490
    14771491.format-audio .entry-media:before {
     
    16591673        font-weight: bold;
    16601674}
    16611675
    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 
    1671 .format-image .entry-content .size-full {
    1672         margin: 0 -60px;
    1673         max-width: 724px;
    1674 }
    1675 
    1676 .format-image .wp-caption {
    1677         margin: 0 auto;
    1678         text-align: center;
    1679 }
    1680 
    1681 .format-image .wp-caption-text {
    1682         padding: 0 5px;
    1683         text-align: left;
    1684 }
    1685 
    1686 .format-image .wp-caption.alignleft:first-of-type,
    1687 .format-image .wp-caption.alignright:first-of-type {
    1688         margin: 0;
    1689 }
    1690 
    1691 .format-image p:last-child {
    1692         margin: 0;
    1693 }
    1694 
    16951676.format-image .categories-links,
    16961677.format-image .tags-links {
    16971678        display: none;
     
    18601841}
    18611842
    18621843.format-video .entry-content a,
    1863 .single-format-video .entry-content a,
    1864 .format-video .entry-meta a {
    1865         color: #fbfaf3;
    1866 }
    1867 
     1844.format-video .entry-meta a,
    18681845.format-video .entry-content a:hover,
    18691846.format-video .entry-meta a:hover {
    1870         color: #ea9629;
     1847        color: #fbfaf3;
    18711848}
    18721849
    18731850.format-video .entry-title {
     
    18751852        font-weight: 400;
    18761853}
    18771854
    1878 .format-video .entry-header {
    1879         max-width: 724px;
    1880 }
    1881 
    18821855.format-video .entry-meta {
    18831856        color: #220e10;
    18841857}
  • wp-content/themes/twentythirteen/functions.php

     
    100100        add_theme_support( 'post-thumbnails' );
    101101        set_post_thumbnail_size( 604, 270, true );
    102102
     103        // Register custom image size for image post formats.
     104        add_image_size( 'twentythirteen-image-post-format', 724, 1288 );
     105
    103106        // This theme uses its own gallery styles.
    104107        add_filter( 'use_default_gallery_style', '__return_false' );
    105108}
     
    527530 * @since Twenty Thirteen 1.0
    528531 */
    529532function twentythirteen_content_width() {
    530         if ( has_post_format( 'image' ) || has_post_format( 'video' ) || is_attachment() ) {
     533        if ( has_post_format( 'video' ) || is_attachment() ) {
    531534                global $content_width;
    532535                $content_width = 724;
    533536        }