Make WordPress Core

Ticket #25256: twentyfourteen.diff

File twentyfourteen.diff, 1.2 KB (added by ericlewis, 12 years ago)
  • src/wp-content/themes/twentyfourteen/functions.php

     
    2323 * @subpackage Twenty_Fourteen
    2424 */
    2525
    26 /**
    27  * Sets up the content width value based on the theme's design.
     26/* Sets up the content width value based on the theme's design.
    2827 * @see twentyfourteen_content_width() for template-specific adjustments.
    2928 */
    3029if ( ! isset( $content_width ) )
     
    297296        $attachment_size     = apply_filters( 'twentyfourteen_attachment_size', array( 1200, 1200 ) );
    298297        $next_attachment_url = wp_get_attachment_url();
    299298
    300         /**
    301          * Grab the IDs of all the image attachments in a gallery so we can get the URL
     299        /* Grab the IDs of all the image attachments in a gallery so we can get the URL
    302300         * of the next adjacent image in a gallery, or the first image (if we're
    303301         * looking at the last image in a gallery), or, in a gallery of one, just the
    304302         * link to that image file.
     
    512510
    513511/**
    514512 * Implement the Custom Header feature
    515  *
    516513 */
    517514require get_template_directory() . '/inc/custom-header.php';
    518515