这段代码为自定义标题添加了主题支持,从而在wp仪表板的外观下添加了一个新页面。
function themes_custom_header_setup() {
add_theme_support( \'custom-header\', $defaults, array(
\'default-text-color\' => \'fff\',
\'width\' => 1260,
\'height\' => 240,
\'flex-height\' => true,
\'wp-head-callback\' => \'themes_header_style\',
\'admin-head-callback\' => \'themes_admin_header_style\',
\'admin-preview-callback\' => \'themes_admin_header_image\',
) ) );
}
add_action( \'after_setup_theme\', \'themes_custom_header_setup\' );
您可以在上述代码中添加/删除默认参数。
来源http://codex.wordpress.org/Function_Reference/add_theme_support
然后您可以查看标题。php文件的一个主题类似于214,看看它是如何编码的。