add_section( 'post_page_layout_settings', array( 'title' => __( 'Single Post Layout', 'blossom-floral-pro' ), 'priority' => 50, 'panel' => 'layout_settings', ) ); /** Page Sidebar layout */ $wp_customize->add_setting( 'single_post_layout', array( 'default' => 'one', 'sanitize_callback' => 'blossom_floral_pro_sanitize_radio' ) ); $wp_customize->add_control( new Blossom_Floral_Pro_Radio_Image_Control( $wp_customize, 'single_post_layout', array( 'section' => 'post_page_layout_settings', 'label' => __( 'Single Post Layout', 'blossom-floral-pro' ), 'description' => __( 'Choose the layout of the single post.', 'blossom-floral-pro' ), 'choices' => array( 'one' => get_template_directory_uri() . '/images/single/one.svg', 'two' => get_template_directory_uri() . '/images/single/two.svg', 'three' => get_template_directory_uri() . '/images/single/three.svg', 'four' => get_template_directory_uri() . '/images/single/four.svg', 'five' => get_template_directory_uri() . '/images/single/five.svg', 'six' => get_template_directory_uri() . '/images/single/six.svg', 'seven' => get_template_directory_uri() . '/images/single/seven.svg', ) ) ) ); } add_action( 'customize_register', 'blossom_floral_pro_customize_register_layout_post_page' );