Make WordPress Core

Changeset 24151


Ignore:
Timestamp:
05/01/2013 05:37:44 PM (12 years ago)
Author:
lancewillett
Message:

Twenty Thirteen: remove unneeded "structured" post formats add_theme_support() declaration. Fixes #24109.

File:
1 edited

Legend:

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

    r24071 r24151  
    7979
    8080    /*
    81      * This theme supports all available post formats.
     81     * This theme supports all available post formats by default.
    8282     * See http://codex.wordpress.org/Post_Formats
    83      *
    84      * Structured post formats are formats where Twenty Thirteen handles the
    85      * output instead of the default core HTML output.
    86      */
    87     add_theme_support( 'structured-post-formats', array(
    88         'link', 'video'
    89     ) );
     83     */
    9084    add_theme_support( 'post-formats', array(
    91         'aside', 'audio', 'chat', 'gallery', 'image', 'quote', 'status'
     85        'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video'
    9286    ) );
    9387
Note: See TracChangeset for help on using the changeset viewer.