add_section( 'online-shop-header-info', array(
'priority' => 20,
'capability' => 'edit_theme_options',
'title' => esc_html__( 'Basic Info', 'online-shop' ),
'panel' => 'online-shop-header-top-panel'
) );
/*header basic info number*/
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-header-bi-number]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-header-bi-number'],
'sanitize_callback' => 'online_shop_sanitize_select'
) );
$choices = online_shop_header_bi_number();
$wp_customize->add_control( 'online_shop_theme_options[online-shop-header-bi-number]', array(
'choices' => $choices,
'label' => esc_html__( 'Header Basic Info Number Display', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-header-bi-number]',
'type' => 'select'
) );
/*first info*/
$wp_customize->add_setting('online_shop_theme_options[online-shop-first-info-message]', array(
'capability' => 'edit_theme_options',
'default' => '',
'sanitize_callback' => 'esc_attr'
));
$wp_customize->add_control(
new Online_Shop_Customize_Message_Control(
$wp_customize,
'online_shop_theme_options[online-shop-first-info-message]',
array(
'section' => 'online-shop-header-info',
'description' => "
".esc_html__('First Info','online-shop')."
",
'settings' => 'online_shop_theme_options[online-shop-first-info-message]',
'type' => 'message'
)
)
);
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-first-info-icon]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-first-info-icon'],
'sanitize_callback' => 'online_shop_sanitize_allowed_html'
) );
$wp_customize->add_control(
new Online_Shop_Customize_Icons_Control(
$wp_customize,
'online_shop_theme_options[online-shop-first-info-icon]',
array(
'label' => esc_html__( 'Icon', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-first-info-icon]',
'type' => 'text'
)
)
);
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-first-info-title]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-first-info-title'],
'sanitize_callback' => 'online_shop_sanitize_allowed_html'
) );
$wp_customize->add_control( 'online_shop_theme_options[online-shop-first-info-title]', array(
'label' => esc_html__( 'Title', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-first-info-title]',
'type' => 'text'
) );
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-first-info-link]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-first-info-link'],
'sanitize_callback' => 'esc_url_raw'
) );
$wp_customize->add_control( 'online_shop_theme_options[online-shop-first-info-link]', array(
'label' => esc_html__( 'Link', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-first-info-link]',
'type' => 'url'
) );
/*Second Info*/
$wp_customize->add_setting('online_shop_theme_options[online-shop-second-info-message]', array(
'capability' => 'edit_theme_options',
'default' => '',
'sanitize_callback' => 'esc_attr'
));
$wp_customize->add_control(
new Online_Shop_Customize_Message_Control(
$wp_customize,
'online_shop_theme_options[online-shop-second-info-message]',
array(
'section' => 'online-shop-header-info',
'description' => "
".esc_html__('Second Info','online-shop')."
",
'settings' => 'online_shop_theme_options[online-shop-second-info-message]',
'type' => 'message',
)
)
);
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-second-info-icon]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-second-info-icon'],
'sanitize_callback' => 'online_shop_sanitize_allowed_html'
) );
$wp_customize->add_control(
new Online_Shop_Customize_Icons_Control(
$wp_customize,
'online_shop_theme_options[online-shop-second-info-icon]',
array(
'label' => esc_html__( 'Icon', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-second-info-icon]',
'type' => 'text'
)
)
);
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-second-info-title]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-second-info-title'],
'sanitize_callback' => 'online_shop_sanitize_allowed_html'
) );
$wp_customize->add_control( 'online_shop_theme_options[online-shop-second-info-title]', array(
'label' => esc_html__( 'Title', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-second-info-title]',
'type' => 'text'
) );
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-second-info-link]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-second-info-link'],
'sanitize_callback' => 'esc_url_raw'
) );
$wp_customize->add_control( 'online_shop_theme_options[online-shop-second-info-link]', array(
'label' => esc_html__( 'Link', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-second-info-link]',
'type' => 'url'
) );
/*third info*/
$wp_customize->add_setting('online_shop_theme_options[online-shop-third-info-message]', array(
'capability' => 'edit_theme_options',
'default' => '',
'sanitize_callback' => 'esc_attr'
));
$wp_customize->add_control(
new Online_Shop_Customize_Message_Control(
$wp_customize,
'online_shop_theme_options[online-shop-third-info-message]',
array(
'section' => 'online-shop-header-info',
'description' => "
".esc_html__('Third Info','online-shop')."
",
'settings' => 'online_shop_theme_options[online-shop-third-info-message]',
'type' => 'message',
)
)
);
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-third-info-icon]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-third-info-icon'],
'sanitize_callback' => 'online_shop_sanitize_allowed_html'
) );
$wp_customize->add_control(
new Online_Shop_Customize_Icons_Control(
$wp_customize,
'online_shop_theme_options[online-shop-third-info-icon]',
array(
'label' => esc_html__( 'Icon', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-third-info-icon]',
'type' => 'text'
)
)
);
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-third-info-title]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-third-info-title'],
'sanitize_callback' => 'online_shop_sanitize_allowed_html'
) );
$wp_customize->add_control( 'online_shop_theme_options[online-shop-third-info-title]', array(
'label' => esc_html__( 'Title', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-third-info-title]',
'type' => 'text'
) );
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-third-info-link]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-third-info-link'],
'sanitize_callback' => 'esc_url_raw'
) );
$wp_customize->add_control( 'online_shop_theme_options[online-shop-third-info-link]', array(
'label' => esc_html__( 'Link', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-third-info-link]',
'type' => 'url'
) );
/*forth info*/
$wp_customize->add_setting('online_shop_theme_options[online-shop-forth-info-message]', array(
'capability' => 'edit_theme_options',
'default' => '',
'sanitize_callback' => 'esc_attr'
));
$wp_customize->add_control(
new Online_Shop_Customize_Message_Control(
$wp_customize,
'online_shop_theme_options[online-shop-forth-info-message]',
array(
'section' => 'online-shop-header-info',
'description' => "
".esc_html__('Forth Info','online-shop')."
",
'settings' => 'online_shop_theme_options[online-shop-forth-info-message]',
'type' => 'message',
)
)
);
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-forth-info-icon]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-forth-info-icon'],
'sanitize_callback' => 'online_shop_sanitize_allowed_html'
) );
$wp_customize->add_control(
new Online_Shop_Customize_Icons_Control(
$wp_customize,
'online_shop_theme_options[online-shop-forth-info-icon]',
array(
'label' => esc_html__( 'Icon', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-forth-info-icon]',
'type' => 'text'
)
)
);
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-forth-info-title]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-forth-info-title'],
'sanitize_callback' => 'online_shop_sanitize_allowed_html'
) );
$wp_customize->add_control( 'online_shop_theme_options[online-shop-forth-info-title]', array(
'label' => esc_html__( 'Title', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-forth-info-title]',
'type' => 'text'
) );
$wp_customize->add_setting( 'online_shop_theme_options[online-shop-forth-info-link]', array(
'capability' => 'edit_theme_options',
'default' => $defaults['online-shop-forth-info-link'],
'sanitize_callback' => 'esc_url_raw'
) );
$wp_customize->add_control( 'online_shop_theme_options[online-shop-forth-info-link]', array(
'label' => esc_html__( 'Link', 'online-shop' ),
'section' => 'online-shop-header-info',
'settings' => 'online_shop_theme_options[online-shop-forth-info-link]',
'type' => 'url'
) );