设置默认图像的另一种方法是,在选择svg图像后,在第二个屏幕上提供一个“跳过裁剪”按钮,该图像必须已经裁剪为所需的准确大小。
您只需使用上面定义的数组,在其中定义高度和宽度,然后添加以下内容:
\'flex-width\' => true,
\'flex-height\' => true,
因此,对于我自己的自定义主题,完整片段是:
function hikeitbaby_custom_header_setup() {
add_theme_support( \'custom-header\', apply_filters( \'hikeitbaby_custom_header_args\', array(
\'default-image\' => \'\',
\'default-text-color\' => \'000000\',
\'width\' => 190,
\'height\' => 84,
\'flex-width\' => true,
\'flex-height\' => true,
\'wp-head-callback\' => \'hikeitbaby_header_style\',
\'admin-head-callback\' => \'hikeitbaby_admin_header_style\',
\'admin-preview-callback\' => \'hikeitbaby_admin_header_image\',
) ) );
}
add_action( \'after_setup_theme\', \'hikeitbaby_custom_header_setup\' );
这将为您提供如下屏幕: