<?php

// ---------------------------------------------
// Homepage Panel
// ---------------------------------------------
$wp_customize->add_panel( 'relia_homepage_panel', array (
    'title'                 => __( 'Homepage', 'relia' ),
    'description'           => __( 'Customize the appearance of your homepage', 'relia' ),
    'priority'              => 10
) );

    // ---------------------------------------------
    // Homepage Widget A
    // ---------------------------------------------
    $wp_customize->add_section( 'relia_home_widget_area_a_section', array(
        'title'                 => __( 'Homepage Widget Area A', 'relia'),
        'panel'                 => 'relia_homepage_panel'
    ) );

        // Toggle Visibility of Widget Area A
        $wp_customize->add_setting( 'relia_toggle_widget_area_a', array (
            'default'               => 'on',
            'transport'             => 'refresh',
            'sanitize_callback'     => 'relia_sanitize_widget_area_toggle',
        ) );
        $wp_customize->add_control( 'relia_toggle_widget_area_a', array(
            'type'                  => 'radio',
            'section'               => 'relia_home_widget_area_a_section',
            'label'                 => __( 'Show Home Page Widget Area A?', 'relia' ),
            'choices'               => array(
                'on'            => __( 'Visible', 'relia' ),
                'off'           => __( 'Hidden', 'relia' ),
        ) ) );
    
    // ---------------------------------------------
    // Homepage Widget B
    // ---------------------------------------------
    $wp_customize->add_section( 'relia_home_widget_area_b_section', array(
        'title'                 => __( 'Homepage Widget Area B', 'relia'),
        'panel'                 => 'relia_homepage_panel'
    ) );

        // Toggle Visibility of Widget Area B
        $wp_customize->add_setting( 'relia_toggle_widget_area_b', array (
            'default'               => 'on',
            'transport'             => 'refresh',
            'sanitize_callback'     => 'relia_sanitize_widget_area_toggle',
        ) );
        $wp_customize->add_control( 'relia_toggle_widget_area_b', array(
            'type'                  => 'radio',
            'section'               => 'relia_home_widget_area_b_section',
            'label'                 => __( 'Show Home Page Widget Area B?', 'relia' ),
            'choices'               => array(
                'on'            => __( 'Visible', 'relia' ),
                'off'           => __( 'Hidden', 'relia' ),
        ) ) );
    
    // ---------------------------------------------
    // Homepage Widget C
    // ---------------------------------------------
    $wp_customize->add_section( 'relia_home_widget_area_c_section', array(
        'title'                 => __( 'Homepage Widget Area C', 'relia'),
        'panel'                 => 'relia_homepage_panel'
    ) );

        // Toggle Visibility of Widget Area
        $wp_customize->add_setting( 'relia_toggle_widget_area_c', array (
            'default'               => 'on',
            'transport'             => 'refresh',
            'sanitize_callback'     => 'relia_sanitize_widget_area_toggle',
        ) );
        $wp_customize->add_control( 'relia_toggle_widget_area_c', array(
            'type'                  => 'radio',
            'section'               => 'relia_home_widget_area_c_section',
            'label'                 => __( 'Show Home Page Widget Area C?', 'relia' ),
            'choices'               => array(
                'on'            => __( 'Visible', 'relia' ),
                'off'           => __( 'Hidden', 'relia' ),
        ) ) );
        
    // ---------------------------------------------
    // Homepage Widget D
    // ---------------------------------------------
    $wp_customize->add_section( 'relia_home_widget_area_d_section', array(
        'title'                 => __( 'Homepage Widget Area D', 'relia'),
        'panel'                 => 'relia_homepage_panel'
    ) );

        // Toggle Visibility of Widget Area
        $wp_customize->add_setting( 'relia_toggle_widget_area_d', array (
            'default'               => 'on',
            'transport'             => 'refresh',
            'sanitize_callback'     => 'relia_sanitize_widget_area_toggle',
        ) );
        $wp_customize->add_control( 'relia_toggle_widget_area_d', array(
            'type'                  => 'radio',
            'section'               => 'relia_home_widget_area_d_section',
            'label'                 => __( 'Show Home Page Widget Area D?', 'relia' ),
            'choices'               => array(
                'on'            => __( 'Visible', 'relia' ),
                'off'           => __( 'Hidden', 'relia' ),
        ) ) );

// ---------------------------------------------
// Hero Section
// ---------------------------------------------
//$wp_customize->add_section( 'hero', array(
//    'title'                 => __( 'Featured Product Banner', 'relia'),
//    'description'           => __( 'Customize the large, featured product banner on your homepage', 'relia' ),
//    'panel'                 => 'homepage'
//) );

// ---------------------------------------------
// Hero Section - Settings & Controls
// ---------------------------------------------

    // Hero Banner Image
//    $wp_customize->add_setting( 'big_hero_image', array (
//        'default'               => get_template_directory_uri() . '/inc/images/bw-gear.jpg',
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'esc_url_raw',
//    ) );
//    $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'big_hero_image', array (
//        'mime_type'             => 'image',
//        'settings'              => 'big_hero_image',
//        'section'               => 'hero',
//        'label'                 => __( 'Banner Background Image', 'relia' ),
//        'description'           => __( 'Select the image file that you would like to use as the homepage banner background', 'relia' ),        
//    ) ) );
//
//    // Hero Banner Heading Text
//    $wp_customize->add_setting( 'big_hero_heading', array (
//        'default'               => 'Featured Product',
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_text',
//    ) );
//    $wp_customize->add_control( 'big_hero_heading', array(
//        'type'                  => 'text',
//        'section'               => 'hero',
//        'label'                 => __( 'Main Heading', 'relia' ),
//    ) );

//    // Hero Banner Button 1 Text 
//    $wp_customize->add_setting( 'hero_button_1_text', array (
//        'default'               => 'View Collection',
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_text',
//    ) );
//    $wp_customize->add_control( 'hero_button_1_text', array(
//        'type'                  => 'text',
//        'section'               => 'hero',
//        'label'                 => __( 'Button 1 - Text', 'relia' ),
//    ) );
//
//    // Hero Banner Button 1 Internal Link
//    $wp_customize->add_setting( 'hero_button_1_internal', array (
//        'default'               => 'Select a Post / Page',
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_post',
//    ) );
//    $wp_customize->add_control( 'hero_button_1_internal', array(
//        'type'                  => 'select',
//        'section'               => 'hero',
//        'label'                 => __( 'Button 1 - Link to Post / Page', 'relia' ),
//        'choices'               => relia_all_posts_array(),
//    ) );
//    
//    // Hero Banner Button 1 External URL
//    $wp_customize->add_setting( 'hero_button_1_url', array (
//        'default'               => null,
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'esc_url_raw',
//    ) );
//    $wp_customize->add_control( 'hero_button_1_url', array(
//        'type'                  => 'url',
//        'section'               => 'hero',
//        'label'                 => __( 'Button 1 - External URL', 'relia' ),
//        'description'           => __( 'When not blank, forces Button 1 to link to an external URL instead of a specified post/page', 'relia' ),
//    ) );

//    // Hero Banner Button 2 Text 
//    $wp_customize->add_setting( 'hero_button_2_text', array (
//        'default'               => 'Back Us On Kickstarter',
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_text',
//    ) );
//    $wp_customize->add_control( 'hero_button_2_text', array(
//        'type'                  => 'text',
//        'section'               => 'hero',
//        'label'                 => __( 'Button 2 - Text', 'relia' ),
//    ) );
//
//    // Hero Banner Button 1 Internal Link
//    $wp_customize->add_setting( 'hero_button_2_internal', array (
//        'default'               => 'Select a Post / Page',
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_post',
//    ) );
//    $wp_customize->add_control( 'hero_button_2_internal', array(
//        'type'                  => 'select',
//        'section'               => 'hero',
//        'label'                 => __( 'Button 2 - Link to Post / Page', 'relia' ),
//        'choices'               => relia_all_posts_array(),
//    ) );
//    
//    // Hero Banner Button 2 External URL  
//    $wp_customize->add_setting( 'hero_button_2_url', array (
//        'default'               => null,
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'esc_url_raw',
//    ) );
//    $wp_customize->add_control( 'hero_button_2_url', array(
//        'type'                  => 'url',
//        'section'               => 'hero',
//        'label'                 => __( 'Button 2 - External URL', 'relia' ),
//        'description'           => __( 'When not blank, forces Button 2 to link to an external URL instead of a specified post/page', 'relia' ),
//    ) );
    
// ---------------------------------------------
// Features Section
// ---------------------------------------------
$wp_customize->add_section( 'relia_features_section', array(
    'title'                 => __( 'Feature List CTAs', 'relia' ),
    'description'           => __( 'Customize the 6 CTAs that appear in the Features section', 'relia' ),
    'panel'                 => 'relia_homepage_panel'
) );

    // ---------------------------------------------
    // Features Section Heading
    // ---------------------------------------------

    // Show Feature List Section?
    $wp_customize->add_setting( 'relia_features_list_bool', array (
        'default'               => 'show',
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_show_hide',
    ) );
    $wp_customize->add_control( 'relia_features_list_bool', array(
        'type'                  => 'radio',
        'section'               => 'relia_features_section',
        'label'                 => __( 'Show the Features List Section?', 'relia' ),
        'choices'               => array(
            'show'              => __( 'Show', 'relia' ),
            'hide'              => __( 'Hide', 'relia' ),
    ) ) );

    // Features Section Heading
    $wp_customize->add_setting( 'relia_features_heading', array (
        'default'               => 'Features',
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_features_heading', array(
        'type'                  => 'text',
        'section'               => 'relia_features_section',
        'label'                 => __( 'Features Section Heading', 'relia' ),
    ) );
    
    // ---------------------------------------------
    // CTA 1
    // ---------------------------------------------
   
    // CTA 1 - Icon
    $wp_customize->add_setting( 'relia_features_cta_1_icon', array (
        'default'               => 'fa-star',
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_icon',
    ) );
    $wp_customize->add_control( 'relia_features_cta_1_icon', array(
        'type'                  => 'select',
        'section'               => 'relia_features_section',
        'label'                 => __( 'CTA 1 - Icon', 'relia' ),
        'choices'               => relia_icons(),
    ) );
    
    // CTA 1 - Title
    $wp_customize->add_setting( 'relia_features_cta_1_title', array (
        'default'               => __( 'CTA Title', 'relia' ),
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_features_cta_1_title', array(
        'type'                  => 'text',
        'section'               => 'relia_features_section',
        'label'                 => __( 'CTA 1 - Title', 'relia' ),
    ) );
    
    // CTA 1 - Tagline
    $wp_customize->add_setting( 'relia_features_cta_1_tagline', array (
        'default'               => __( 'Description', 'relia' ),
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_features_cta_1_tagline', array(
        'type'                  => 'text',
        'section'               => 'relia_features_section',
        'label'                 => __( 'CTA 1 - Tagline', 'relia' ),
    ) );
    
    // ---------------------------------------------
    // CTA 2
    // ---------------------------------------------
    
    // CTA 2 - Icon
    $wp_customize->add_setting( 'relia_features_cta_2_icon', array (
        'default'               => 'fa-star',
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_icon',
    ) );
    $wp_customize->add_control( 'relia_features_cta_2_icon', array(
        'type'                  => 'select',
        'section'               => 'relia_features_section',
        'label'                 => __( 'CTA 2 - Icon', 'relia' ),
        'choices'               => relia_icons(),
    ) );
    
    // CTA 2 - Title
    $wp_customize->add_setting( 'relia_features_cta_2_title', array (
        'default'               => __( 'CTA Title', 'relia' ),
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_features_cta_2_title', array(
        'type'                  => 'text',
        'section'               => 'relia_features_section',
        'label'                 => __( 'CTA 2 - Title', 'relia' ),
    ) );
    
    // CTA 2 - Tagline
    $wp_customize->add_setting( 'relia_features_cta_2_tagline', array (
        'default'               => __( 'Description', 'relia' ),
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_features_cta_2_tagline', array(
        'type'                  => 'text',
        'section'               => 'relia_features_section',
        'label'                 => __( 'CTA 2 - Tagline', 'relia' ),
    ) );
    
    // ---------------------------------------------
    // CTA 3
    // ---------------------------------------------
    
    // CTA 3 - Icon
    $wp_customize->add_setting( 'relia_features_cta_3_icon', array (
        'default'               => 'fa-star',
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_icon',
    ) );
    $wp_customize->add_control( 'relia_features_cta_3_icon', array(
        'type'                  => 'select',
        'section'               => 'relia_features_section',
        'label'                 => __( 'CTA 3 - Icon', 'relia' ),
        'choices'               => relia_icons(),
    ) );
    
    // CTA 3 - Title
    $wp_customize->add_setting( 'relia_features_cta_3_title', array (
        'default'               => __( 'CTA Title', 'relia' ),
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_features_cta_3_title', array(
        'type'                  => 'text',
        'section'               => 'relia_features_section',
        'label'                 => __( 'CTA 3 - Title', 'relia' ),
    ) );
    
    // CTA 3 - Tagline
    $wp_customize->add_setting( 'relia_features_cta_3_tagline', array (
        'default'               => __( 'Description', 'relia' ),
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_features_cta_3_tagline', array(
        'type'                  => 'text',
        'section'               => 'relia_features_section',
        'label'                 => __( 'CTA 3 - Tagline', 'relia' ),
    ) );
    
    // ---------------------------------------------
    // CTA 4
    // ---------------------------------------------
    
    // CTA 4 - Icon
//    $wp_customize->add_setting( 'relia_features_cta_4_icon', array (
//        'default'               => 'fa-star',
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_icon',
//    ) );
//    $wp_customize->add_control( 'relia_features_cta_4_icon', array(
//        'type'                  => 'select',
//        'section'               => 'relia_features_section',
//        'label'                 => __( 'CTA 4 - Icon', 'relia' ),
//        'choices'               => relia_icons(),
//    ) );
    
    // CTA 4 - Title
//    $wp_customize->add_setting( 'relia_features_cta_4_title', array (
//        'default'               => __( 'CTA Title', 'relia' ),
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_text',
//    ) );
//    $wp_customize->add_control( 'relia_features_cta_4_title', array(
//        'type'                  => 'text',
//        'section'               => 'relia_features_section',
//        'label'                 => __( 'CTA 4 - Title', 'relia' ),
//    ) );

    // CTA 4 - Tagline
//    $wp_customize->add_setting( 'relia_features_cta_4_tagline', array (
//        'default'               => __( 'Description', 'relia' ),
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_text',
//    ) );
//    $wp_customize->add_control( 'relia_features_cta_4_tagline', array(
//        'type'                  => 'text',
//        'section'               => 'relia_features_section',
//        'label'                 => __( 'CTA 4 - Tagline', 'relia' ),
//    ) );
    
    // ---------------------------------------------
    // CTA 5
    // ---------------------------------------------
    
    // CTA 5 - Icon
//    $wp_customize->add_setting( 'relia_features_cta_5_icon', array (
//        'default'               => 'fa-star',
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_icon',
//    ) );
//    $wp_customize->add_control( 'relia_features_cta_5_icon', array(
//        'type'                  => 'select',
//        'section'               => 'relia_features_section',
//        'label'                 => __( 'CTA 5 - Icon', 'relia' ),
//        'choices'               => relia_icons(),
//    ) );

    // CTA 5 - Title
//    $wp_customize->add_setting( 'relia_features_cta_5_title', array (
//        'default'               => __( 'CTA Title', 'relia' ),
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_text',
//    ) );
//    $wp_customize->add_control( 'relia_features_cta_5_title', array(
//        'type'                  => 'text',
//        'section'               => 'relia_features_section',
//        'label'                 => __( 'CTA 5 - Title', 'relia' ),
//    ) );
    
    // CTA 5 - Tagline
//    $wp_customize->add_setting( 'relia_features_cta_5_tagline', array (
//        'default'               => __( 'Description', 'relia' ),
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_text',
//    ) );
//    $wp_customize->add_control( 'relia_features_cta_5_tagline', array(
//        'type'                  => 'text',
//        'section'               => 'relia_features_section',
//        'label'                 => __( 'CTA 5 - Tagline', 'relia' ),
//    ) );
    
    // ---------------------------------------------
    // CTA 6
    // ---------------------------------------------
    
    // CTA 6 - Icon
//    $wp_customize->add_setting( 'relia_features_cta_6_icon', array (
//        'default'               => 'fa-star',
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_icon',
//    ) );
//    $wp_customize->add_control( 'relia_features_cta_6_icon', array(
//        'type'                  => 'select',
//        'section'               => 'relia_features_section',
//        'label'                 => __( 'CTA 6 - Icon', 'relia' ),
//        'choices'               => relia_icons(),
//    ) );
   
    // CTA 6 - Title
//    $wp_customize->add_setting( 'relia_features_cta_6_title', array (
//        'default'               => __( 'CTA Title', 'relia' ),
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_text',
//    ) );
//    $wp_customize->add_control( 'relia_features_cta_6_title', array(
//        'type'                  => 'text',
//        'section'               => 'relia_features_section',
//        'label'                 => __( 'CTA 6 - Title', 'relia' ),
//    ) );
    
    // CTA 6 - Tagline
//    $wp_customize->add_setting( 'relia_features_cta_6_tagline', array (
//        'default'               => __( 'Description', 'relia' ),
//        'transport'             => 'postMessage',
//        'sanitize_callback'     => 'relia_sanitize_text',
//    ) );
//    $wp_customize->add_control( 'relia_features_cta_6_tagline', array(
//        'type'                  => 'text',
//        'section'               => 'relia_features_section',
//        'label'                 => __( 'CTA 6 - Tagline', 'relia' ),
//    ) );
    
// ---------------------------------------------
// Featured or Recent Articles Section
// ---------------------------------------------
$wp_customize->add_section( 'relia_articles_section', array(
    'title'                 => __( 'Homepage Articles', 'relia'),
    'description'           => __( 'Customize the section where recent or featured articles are displayed on the homepage', 'relia' ),
    'panel'                 => 'relia_homepage_panel'
) );

// ---------------------------------------------
// Featured or Recent Articles Section - Settings & Controls
// ---------------------------------------------

    // Show Recent / Featured Articles Section?
    $wp_customize->add_setting( 'relia_recent_articles_bool', array (
        'default'               => 'show',
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_show_hide',
    ) );
    $wp_customize->add_control( 'relia_recent_articles_bool', array(
        'type'                  => 'radio',
        'section'               => 'relia_articles_section',
        'label'                 => __( 'Show the Homepage Articles Section?', 'relia' ),
        'choices'               => array(
            'show'              => __( 'Show', 'relia' ),
            'hide'              => __( 'Hide', 'relia' ),
    ) ) );

    // Articles Section Heading
    $wp_customize->add_setting( 'relia_articles_heading', array (
        'default'               => __( 'Homepage Articles', 'relia' ),
        'transport'             => 'postMessage',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_articles_heading', array(
        'type'                  => 'text',
        'section'               => 'relia_articles_section',
        'label'                 => __( 'Articles Section Heading', 'relia' ),
    ) );
    
    // Read More Link Text
    $wp_customize->add_setting( 'relia_homepage_articles_read_more', array (
        'default'               => __( 'Read More', 'relia' ),
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_homepage_articles_read_more', array(
        'type'                  => 'text',
        'section'               => 'relia_articles_section',
        'label'                 => __( '"Read More" Link Text', 'relia' ),
    ) );

    
    
    // Featured or Recent 
    $wp_customize->add_setting( 'relia_articles_content', array (
        'default'               => 'featured',
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_articles_switch',
    ) );
    $wp_customize->add_control( 'relia_articles_content', array(
        'type'                  => 'radio',
        'section'               => 'relia_articles_section',
        'label'                 => __( 'Articles to be Displayed', 'relia' ),
        'description'           => __( 'Specify whether you would like to select 3 articles to feature or automatically display the most recent articles', 'relia' ),
        'choices'               => array(
            'recent'            => __( 'Show Most Recent', 'relia' ),
            'featured'          => __( 'Use Featured', 'relia' ),
    ) ) );
    
    // Featured Article 1
    $wp_customize->add_setting( 'relia_featured_article_1', array (
        'default'               => null,
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_post',
    ) );
    $wp_customize->add_control( 'relia_featured_article_1', array(
        'type'                  => 'select',
        'section'               => 'relia_articles_section',
        'label'                 => __( 'Featured Article 1', 'relia' ),
        'choices'               => relia_all_posts_array(),
    ) );
    
    // Featured Article 2
    $wp_customize->add_setting( 'relia_featured_article_2', array (
        'default'               => null,
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_post',
    ) );
    $wp_customize->add_control( 'relia_featured_article_2', array(
        'type'                  => 'select',
        'section'               => 'relia_articles_section',
        'label'                 => __( 'Featured Article 2', 'relia' ),
        'choices'               => relia_all_posts_array(),
    ) );
    
    // Featured Article 3
    $wp_customize->add_setting( 'relia_featured_article_3', array (
        'default'               => null,
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_post',
    ) );
    $wp_customize->add_control( 'relia_featured_article_3', array(
        'type'                  => 'select',
        'section'               => 'relia_articles_section',
        'label'                 => __( 'Featured Article 3', 'relia' ),
        'choices'               => relia_all_posts_array(),
    ) );
    
    
// ---------------------------------------------
// relia_static_front_page_section
// ---------------------------------------------
$wp_customize->add_section( 'static_front_page', array (
    'title'     => __( 'Homepage Content', 'relia' ),
    'panel'     => 'relia_homepage_panel',
) );

    // Show or Hide Frontpage Content?
    $wp_customize->add_setting( 'relia_homepage_content_bool', array (
        'default'               => 'show',
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_show_hide',
    ) );
    $wp_customize->add_control( 'relia_homepage_content_bool', array(
        'type'                  => 'radio',
        'section'               => 'static_front_page',
        'label'                 => __( 'Show the frontpage content?', 'relia' ),
        'choices'               => array(
            'show'              => __( 'Show', 'relia' ),
            'hide'              => __( 'Hide', 'relia' ),
    ) ) );
    
    // Featured Content Title
    $wp_customize->add_setting( 'relia_homepage_content_title', array (
        'default'               => __( 'Featured Content', 'relia' ),
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_text',
    ) );
    $wp_customize->add_control( 'relia_homepage_content_title', array(
        'type'                  => 'text',
        'section'               => 'static_front_page',
        'label'                 => __( 'Frontpage content title', 'relia' ),
    ) );
    
    // Show or Hide Featured Content Title
    $wp_customize->add_setting( 'relia_homepage_content_title_toggle', array (
        'default'               => 'show',
        'transport'             => 'refresh',
        'sanitize_callback'     => 'relia_sanitize_show_hide',
    ) );
    $wp_customize->add_control( 'relia_homepage_content_title_toggle', array(
        'type'                  => 'radio',
        'section'               => 'static_front_page',
        'label'                 => __( 'Show the frontpage content title?', 'relia' ),
        'choices'               => array(
            'show'              => __( 'Show', 'relia' ),
            'hide'              => __( 'Hide', 'relia' ),
    ) ) );