*
* @package Affinity
*/
/**
* Set up the WordPress core custom header feature.
*
* @uses affinity_header_style()
*/
function affinity_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'affinity_custom_header_args', array(
'random-default' => true,
'default-text-color' => 'e8e9ea',
'width' => 2000,
'height' => 1200,
'flex-height' => true,
'wp-head-callback' => 'affinity_header_style',
) ) );
register_default_headers( array(
'header-image-1' => array(
'url' => '%s/assets/img/autumn.jpg',
'thumbnail_url' => '%s/assets/img/thumbs/autumn.jpg',
'description' => esc_html__( 'Autumn Path', 'affinity' ),
),
'header-image-2' => array(
'url' => '%s/assets/img/car.jpg',
'thumbnail_url' => '%s/assets/img/thumbs/car.jpg',
'description' => esc_html__( 'Vintage Car', 'affinity' ),
),
'header-image-3' => array(
'url' => '%s/assets/img/typewriter.jpg',
'thumbnail_url' => '%s/assets/img/thumbs/typewriter.jpg',
'description' => esc_html__( 'Typewriter', 'affinity' ),
),
'header-image-4' => array(
'url' => '%s/assets/img/tulips.jpg',
'thumbnail_url' => '%s/assets/img/thumbs/tulips.jpg',
'description' => esc_html__( 'Tulips', 'affinity' ),
),
'header-image-5' => array(
'url' => '%s/assets/img/camera.jpg',
'thumbnail_url' => '%s/assets/img/thumbs/camera.jpg',
'description' => esc_html__( 'Vintage Camera', 'affinity' ),
),
) );
}
add_action( 'after_setup_theme', 'affinity_custom_header_setup' );
if ( ! function_exists( 'affinity_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*
* @see affinity_custom_header_setup().
*/
function affinity_header_style() {
$header_text_color = get_header_textcolor();
// If no custom options for text are set, let's bail
// get_header_textcolor() options: add_theme_support( 'custom-header' ) is default, hide text (returns 'blank') or any hex value.
if ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color ) {
return;
}
// If we get this far, we have custom styles. Let's do this.
?>