add_section( 'wedev_home_section_reorder', array( 'title' => esc_html__( 'Section Reorder', 'blogflux' ), 'capability' => 'edit_theme_options', 'panel' => 'blogflux_home', ) ); $wp_customize->add_setting( 'home_section_order_1', array( 'default' => $blogflux_default['home_section_order_1'], 'sanitize_callback' => 'blogflux_sanitize_reorder', ) ); $wp_customize->add_control( new Blogflux_Sortable_Control( $wp_customize, 'home_section_order_1', array( 'section' => 'wedev_home_section_reorder', 'label' => __( 'Home Section Re-Order', 'blogflux' ), 'choices' => array( 'cta-section' => __( 'Call To Action Section', 'blogflux' ), 'banner' => __( 'Slide Banner Section', 'blogflux' ), 'featured-category' => __( 'Featured Category', 'blogflux' ), 'latest-posts' => __( 'Latest Posts', 'blogflux' ), 'gallery_slider_setting' => __( 'Image Gallery', 'blogflux' ), 'header_featured_post_setting' => __( 'Featured Posts', 'blogflux' ), 'header_featured_video_setting' => __( 'Featured Video', 'blogflux' ), 'logo_with_link_slider_setting' => __( 'logo / Brand Slider', 'blogflux' ), ), ) ) );