$default_background_color, ) ) ); /** * Filter the arguments used when adding 'custom-header' support in Blakely. * * @since Blakely 1.0 * * @param array $args { * 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. * */ add_theme_support( 'custom-header', apply_filters( 'blakely_custom_header_args', array( 'default-image' => get_stylesheet_directory_uri() . '/assets/images/header-image.jpg', 'default-text-color' => $default_text_color, 'width' => 1920, 'height' => 1080, 'flex-height' => true, 'flex-width' => true, 'wp-head-callback' => 'blakely_header_style', 'video' => true, ) ) ); register_default_headers( array( 'default-image' => array( 'url' => '%s/assets/images/header-image.jpg', 'thumbnail_url' => '%s/assets/images/header-image-275x155.jpg', 'description' => esc_html__( 'Default Header Image', 'blakely-light' ), ), ) ); } add_action( 'after_setup_theme', 'blakely_light_custom_header_and_background' );