From 7d77a6eb04d438c58930c7b86b074f359eab701f Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 8 Jan 2019 05:56:49 +0000 Subject: [PATCH] Docs: Correct the parameters passed to the `twentyseventeen_custom_header_args` filter. The documented `$default_text_color` parameter isn't passed, and the `$video` parameter is passed, but not documented. Props mukesh27. Fixes #44920. Built from https://develop.svn.wordpress.org/trunk@44462 git-svn-id: http://core.svn.wordpress.org/trunk@44293 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/inc/custom-header.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentyseventeen/inc/custom-header.php b/wp-content/themes/twentyseventeen/inc/custom-header.php index 00490a7a6b..9e4f5e6a40 100644 --- a/wp-content/themes/twentyseventeen/inc/custom-header.php +++ b/wp-content/themes/twentyseventeen/inc/custom-header.php @@ -25,12 +25,12 @@ function twentyseventeen_custom_header_setup() { * An array of custom-header support arguments. * * @type string $default-image Default image of the header. - * @type string $default_text_color Default color of the header text. * @type int $width Width in pixels of the custom header image. Default 954. * @type int $height Height in pixels of the custom header image. Default 1300. + * @type string $flex-height Flex support for height of header. + * @type string $video Video support for header. * @type string $wp-head-callback Callback function used to styles the header image and text * displayed on the blog. - * @type string $flex-height Flex support for height of header. * } */ add_theme_support( diff --git a/wp-includes/version.php b/wp-includes/version.php index 37f4d1d17d..cbb58c78dd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1-alpha-44461'; +$wp_version = '5.1-alpha-44462'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.