Make WordPress Core

Ticket #23620: 23620.6.diff

File 23620.6.diff, 2.5 KB (added by lancewillett, 12 years ago)
  • wp-content/themes/twentythirteen/style.css

     
    16431643        font-weight: bold;
    16441644}
    16451645
     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
    16461655.format-image .entry-content .size-full {
    16471656        margin: 0 -60px;
    16481657        max-width: 724px;
     
    18541863        font-weight: 400;
    18551864}
    18561865
     1866.format-video .entry-header {
     1867        max-width: 724px;
     1868}
     1869
    18571870.format-video .entry-meta {
    18581871        color: #220e10;
    18591872}
  • wp-content/themes/twentythirteen/content-image.php

     
    1010
    1111<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    1212        <header class="entry-header">
     13                <div class="entry-media">
     14                        <?php the_image(); ?>
     15                </div>
     16
    1317                <?php if ( is_single() ) : ?>
    1418                <h1 class="entry-title"><?php the_title(); ?></h1>
    1519                <?php else : ?>
  • wp-content/themes/twentythirteen/functions.php

     
    7171         * See http://codex.wordpress.org/Post_Formats
    7272         */
    7373        add_theme_support( 'structured-post-formats', array(
    74                 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video'
     74                'link', 'video'
    7575        ) );
    7676
     77        add_theme_support( 'post-formats', array(
     78                'aside', 'audio', 'chat', 'gallery', 'image', 'quote', 'status'
     79        ) );
     80
    7781        /*
    7882         * Custom callback to make it easier for our fixed navbar to coexist with
    7983         * the WordPress toolbar. See `.wp-toolbar` in style.css.
  • wp-content/themes/twentythirteen/content-video.php

     
    1010
    1111<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    1212        <header class="entry-header">
     13                <div class="entry-media">
     14                        <?php the_video(); ?>
     15                </div>
     16
    1317                <?php if ( is_single() ) : ?>
    1418                <h1 class="entry-title"><?php the_title(); ?></h1>
    1519                <?php else : ?>