add_section( 'acommerce_layout_section', array( 'title' => esc_html__( 'Sidebar Layout', 'acommerce' ), 'priority' => 4, 'panel' =>'general_setting' ) ); //Archive or blog page section $wp_customize->add_setting( 'acommerce_archiver_sierbar_layout', array( 'default' =>'acommerce-right-sidebar', 'sanitize_callback' => 'acommerce_sanitize_radio' ) ); $wp_customize->add_control( new aCommerce_Radio_Control( $wp_customize, 'acommerce_archiver_sierbar_layout', array( 'type' => 'radio', 'label' => esc_html__( 'Archiver/Blog/Search Page Sidebar', 'acommerce' ), 'section' => 'acommerce_layout_section', 'priority' => 1, 'choices' => array( 'acommerce-left-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/left-sidebar.png'), 'acommerce-right-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/right-sidebar.png'), 'acommerce-both-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/both-sidebar.png'), 'acommerce-no-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/full-width.png'), ) ) ) ); //Single page siebar section $wp_customize->add_setting( 'acommerce_single_page_sierbar_layout', array( 'default' =>'acommerce-right-sidebar', 'sanitize_callback' => 'acommerce_sanitize_radio' ) ); $wp_customize->add_control( new aCommerce_Radio_Control( $wp_customize, 'acommerce_single_page_sierbar_layout', array( 'type' => 'radio', 'label' => esc_html__( 'Single Page Sidebar', 'acommerce' ), 'section' => 'acommerce_layout_section', 'priority' => 2, 'choices' => array( 'acommerce-left-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/left-sidebar.png'), 'acommerce-right-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/right-sidebar.png'), 'acommerce-both-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/both-sidebar.png'), 'acommerce-no-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/full-width.png'), ) ) ) ); //Page siebar section $wp_customize->add_setting( 'acommerce_page_sierbar_layout', array( 'default' =>'acommerce-right-sidebar', 'sanitize_callback' => 'acommerce_sanitize_radio' ) ); $wp_customize->add_control( new aCommerce_Radio_Control( $wp_customize, 'acommerce_page_sierbar_layout', array( 'type' => 'radio', 'label' => esc_html__( 'Page Sidebar', 'acommerce' ), 'section' => 'acommerce_layout_section', 'priority' => 3, 'choices' => array( 'acommerce-left-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/left-sidebar.png'), 'acommerce-right-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/right-sidebar.png'), 'acommerce-both-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/both-sidebar.png'), 'acommerce-no-sidebar' => esc_url( ACOMMERCE_THEME_IMG . 'sidebar/full-width.png'), ) ) ) ); } add_action( 'customize_register', 'acommerce_layout_settings' );