add_panel( 'ample_construction_theme_options', array( 'priority' => 7, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__('Theme Option', 'ample-construction'), ) ); /*----------------------------------------------------------------------------------------------*/ /** * Color Options * * @since 1.0.0 */ $wp_customize->add_section( 'ample_construction_primary_color_option', array( 'title' => esc_html__('Color Options', 'ample-construction'), 'panel' => 'ample_construction_theme_options', 'priority' => 6, ) ); $wp_customize->add_setting( 'ample_construction_primary_color', array( 'default' => $default['ample_construction_primary_color'], 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'ample_construction_primary_color', array( 'label' => esc_html__('Primary Color', 'ample-construction'), 'description' => esc_html__('We recommend choose different background color but not to choose similar to font color', 'ample-construction'), 'section' => 'ample_construction_primary_color_option', 'priority' => 14, ))); /*-----------------------------------------------------------------------------*/ /** * Top Header Background Color * * @since 1.0.0 */ $wp_customize-> add_setting( 'ample_construction_top_header_background_color', array( 'default' => $default['ample_construction_top_header_background_color'], 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize-> add_control( new WP_Customize_Color_Control( $wp_customize, 'ample_construction_top_header_background_color', array( 'label' => esc_html__('Top Header Background Color', 'ample-construction'), 'description' => esc_html__('We recommend choose different background color but not to choose similar to font color', 'ample-construction'), 'section' => 'ample_construction_primary_color_option', 'priority' => 14, ))); /*-----------------------------------------------------------------------------*/ /** * Top Footer Background Color * * @since 1.0.0 */ $wp_customize->add_setting( 'ample_construction_top_footer_background_color', array( 'default' => $default['ample_construction_top_footer_background_color'], 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'ample_construction_top_footer_background_color', array( 'label' => esc_html__('Top Footer Background Color', 'ample-construction'), 'description' => esc_html__('We recommend choose different background color but not to choose similar to font color', 'ample-construction'), 'section' => 'ample_construction_primary_color_option', 'priority' => 14, ))); /*-----------------------------------------------------------------------------*/ /** * Bottom Footer Background Color * * @since 1.0.0 */ $wp_customize->add_setting( 'ample_construction_bottom_footer_background_color', array( 'default' => $default['ample_construction_bottom_footer_background_color'], 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize, 'ample_construction_bottom_footer_background_color', array( 'label' => esc_html__('Bottom Footer Background Color', 'ample-construction'), 'description' => esc_html__('We recommend choose different background color but not to choose similar to font color', 'ample-construction'), 'section' => 'ample_construction_primary_color_option', 'priority' => 14, ))); /*-------------------------------------------------------------------------------------------*/ /** * Hide Static page in Home page * * @since 1.0.0 */ $wp_customize->add_section( 'ample_construction_front_page_option', array( 'title' => esc_html__('Front Page Options', 'ample-construction'), 'panel' => 'ample_construction_theme_options', 'priority' => 6, ) ); /** * Show/Hide Static page/Posts in Home page */ $wp_customize->add_setting( 'ample_construction_front_page_hide_option', array( 'default' => $default['ample_construction_front_page_hide_option'], 'sanitize_callback' => 'ample_construction_sanitize_checkbox', ) ); $wp_customize->add_control('ample_construction_front_page_hide_option', array( 'label' => esc_html__('Hide Blog Posts or Static Page on Front Page', 'ample-construction'), 'section' => 'ample_construction_front_page_option', 'type' => 'checkbox', 'priority' => 10 ) ); /*-------------------------------------------------------------------------------------------*/ /** * Breadcrumb Options * * @since 1.0.0 */ $wp_customize->add_section( 'ample_construction_breadcrumb_option', array( 'title' => esc_html__('Breadcrumb Options', 'ample-construction'), 'panel' => 'ample_construction_theme_options', 'priority' => 6, ) ); /** * Breadcrumb Option */ $wp_customize->add_setting( 'ample_construction_breadcrumb_setting_option', array( 'default' => $default['ample_construction_breadcrumb_setting_option'], 'sanitize_callback' => 'ample_construction_sanitize_select', ) ); $hide_show_breadcrumb_option = ample_construction_show_breadcrumb_option(); $wp_customize->add_control('ample_construction_breadcrumb_setting_option', array( 'label' => esc_html__('Breadcrumb Options', 'ample-construction'), 'section' => 'ample_construction_breadcrumb_option', 'choices' => $hide_show_breadcrumb_option, 'type' => 'select', 'priority' => 10 ) ); /** * Show/Hide Breadcrumb in Home page */ $wp_customize->add_setting( 'ample_construction_hide_breadcrumb_front_page_option', array( 'default' => $default['ample_construction_hide_breadcrumb_front_page_option'], 'sanitize_callback' => 'ample_construction_sanitize_checkbox', ) ); $wp_customize->add_control('ample_construction_hide_breadcrumb_front_page_option', array( 'label' => esc_html__('Show/Hide Breadcrumb in Home page', 'ample-construction'), 'section' => 'ample_construction_breadcrumb_option', 'type' => 'checkbox', 'priority' => 10 ) ); /*-------------------------------------------------------------------------------------------*/ /** * Reset Options * * @since 1.0.0 */ $wp_customize->add_section( 'ample_construction_reset_option', array( 'title' => esc_html__('Color Reset Options', 'ample-construction'), 'panel' => 'ample_construction_theme_options', 'priority' => 14, ) ); /** * Reset Option */ $wp_customize->add_setting( 'ample_construction_color_reset_option', array( 'default' => $default['ample_construction_color_reset_option'], 'sanitize_callback' => 'ample_construction_sanitize_select', 'transport' => 'postMessage' ) ); $reset_option = ample_construction_reset_option(); $wp_customize->add_control('ample_construction_color_reset_option', array( 'label' => esc_html__('Reset Options', 'ample-construction'), 'description' => sprintf( esc_html__('Caution: Reset theme settings according to the given options. Refresh the page after saving to view the effects', 'ample-construction')), 'section' => 'ample_construction_reset_option', 'type' => 'select', 'choices' => $reset_option, 'priority' => 20 ) );