Make WordPress Core

Changeset 23803


Ignore:
Timestamp:
03/27/2013 05:11:41 AM (12 years ago)
Author:
lancewillett
Message:

Twenty Thirteen: explicitly declare 'link' and 'video' as the only (current) structured post formats in Twenty Thirteen. See #23852 #23619 #23864 and #23620.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentythirteen/functions.php

    r23799 r23803  
    7070     * This theme supports all available post formats.
    7171     * See http://codex.wordpress.org/Post_Formats
     72     *
     73     * Structured post formats are formats where Twenty Thirteen handles the
     74     * output instead of the default core HTML output.
    7275     */
    7376    add_theme_support( 'structured-post-formats', array(
    74         'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video'
     77        'link', 'video'
     78    ) );
     79    add_theme_support( 'post-formats', array(
     80        'aside', 'audio', 'chat', 'gallery', 'image', 'quote', 'status'
    7581    ) );
    7682
Note: See TracChangeset for help on using the changeset viewer.