您可以使用twentyfifteen_custom_header_args
用于自定义宽度和高度的过滤器。检查以下示例。
add_filter( \'twentyfifteen_custom_header_args\', \'theme_slug_custom_header_args\' );
function theme_slug_custom_header_args( $args ){
$args[\'width\'] = 600;
$args[\'height\'] = 800;
return $args;
}
在该示例中,宽度更改为600,高度设置为800。