WordPress的add_theme_support介紹

在看 twenty-fourteen 這個官網主題時,會發現主題有 背景和頭部設置
這個是怎麼出來的呢?
其實是用到了 add_theme_support 這個函數。

add_theme_support( 'custom-background', apply_filters( 'twentyfourteen_custom_background_args', array(
        'default-color' => 'f5f5f5',
    ) ) );

require get_template_directory() . '/inc/custom-header.php';
-----------
    

比如縮略圖,也是由這個函數在 function.php 裏設置的。
代碼:
    add_theme_support( 'post-thumbnails' );
    set_post_thumbnail_size( 672, 372, true );
    add_image_size( 'twentyfourteen-full-width', 1038, 576, true );
-------------
還有文章格式,也是由它設置的:
代碼:
add_theme_support( 'post-formats', array(
        'aside', 'image', 'video', 'audio', 'quote', 'link', 'gallery',
    ) );
--------------------    

http://codex.WordPress.org/Function_Reference/add_theme_support