add_section( 'acommerce_theme_layout_section', array( 'title' => esc_html__( 'Theme Layout', 'acommerce' ), 'priority' => 5, 'panel' =>'general_setting' ) ); //Single page siebar section $wp_customize->add_setting( 'acommerce_theme_layout_settings', array( 'default' =>'acommerce-fullwidth', 'sanitize_callback' => 'acommerce_sanitize_radio' ) ); $wp_customize->add_control( new aCommerce_Radio_Control( $wp_customize, 'acommerce_theme_layout_settings', array( 'type' => 'radio', 'label' => esc_html__( 'Theme Layout Options', 'acommerce' ), 'section' => 'acommerce_theme_layout_section', 'priority' => 1, 'choices' => array( 'acommerce-fullwidth' => esc_url( ACOMMERCE_THEME_IMG . 'box-layout/wide-layout.png'), 'acommerce-boxlayot' => esc_url( ACOMMERCE_THEME_IMG . 'box-layout/box-layout.png'), ) ) ) ); } add_action( 'customize_register', 'acommerce_theme_layout_settings' );