Filters the arguments used when adding 'custom-header' support in Twenty Sixteen.
Parameters
$argsarray
{ An array of custom-header support arguments. @type string $default-text-color Default color of the header text. @type int $width Width in pixels of the custom header image. Default 1200. @type int $height Height in pixels of the custom header image. Default 280. @type bool $flex-height Whether to allow flexible-height header images. Default true. @type callable $wp-head-callback Callback function used to style the header image and text displayed on the blog.}
$default-text-colorstring
Default color of the header text.
$widthint
Width in pixels of the custom header image. Default 1200.
$heightint
Height in pixels of the custom header image. Default 280.
$flex-heightbool
Whether to allow flexible-height header images. Default true.
$wp-head-callbackcallable
Callback function used to style the header image and text displayed on the blog.
55* @type int$height Height in pixels of the custom header image.Default280.56* @type bool$flex-height Whether to allow flexible-height header images.Defaulttrue.57* @type callable$wp-head-callback Callback function used to style the header image and text58* displayed on the blog.59*}60*/61apply_filters(62'twentysixteen_custom_header_args',63array(64'default-text-color'=>$default_text_color,65'width'=>1200,66'height'=>280,67'flex-height'=>true,
History
Introduced in Twenty Sixteen 1.0. Unchanged from 6.7.7 through 7.1.0.