在看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
主題貓WP建站,累計幫助1300+客戶成功建站,為站長提供支持!
立刻開啟你的建站之旅