20, 'title' => __( 'Layout Options', 'business-eye' ), 'panel' => 'business-eye-theme-options', ); /*layout-options option responsive lodader start*/ $business_eye_settings_controls['business-eye-default-layout'] = array( 'setting' => array( 'default' => $business_eye_customizer_defaults['business-eye-default-layout'], ), 'control' => array( 'label' => __( 'Default Layout', 'business-eye' ), 'description' => __( 'Layout for all archives, single posts and pages', 'business-eye' ), 'section' => 'business-eye-layout-options', 'type' => 'select', 'choices' => array( 'right-sidebar' => __( 'Content - Primary Sidebar', 'business-eye' ), 'left-sidebar' => __( 'Primary Sidebar - Content', 'business-eye' ), 'no-sidebar' => __( 'No Sidebar', 'business-eye' ) ), 'priority' => 30, 'active_callback' => '' ) ); $business_eye_settings_controls['business-eye-archive-layout'] = array( 'setting' => array( 'default' => $business_eye_customizer_defaults['business-eye-archive-layout'], ), 'control' => array( 'label' => __( 'Archive Layout', 'business-eye' ), 'section' => 'business-eye-layout-options', 'type' => 'select', 'choices' => array( 'excerpt-only' => __( 'Excerpt Only', 'business-eye' ), 'thumbnail-and-excerpt' => __( 'Thumbnail and Excerpt', 'business-eye' ), ), 'priority' => 34, ) ); $business_eye_settings_controls['business-eye-archive-image-align'] = array( 'setting' => array( 'default' => $business_eye_customizer_defaults['business-eye-archive-image-align'], ), 'control' => array( 'label' => __( 'Archive Image Alignment', 'business-eye' ), 'section' => 'business-eye-layout-options', 'type' => 'select', 'choices' => array( 'full' => __( 'Full', 'business-eye' ), 'right' => __( 'Right', 'business-eye' ), ), 'priority' => 35, 'description' => __('This option only work if you have selected "Thumbnail and Excerpt" or "Thumbnail and Full Post" in Archive Layout options','business-eye'), ) ); $business_eye_settings_controls['business-eye-number-of-words'] = array( 'setting' => array( 'default' => $business_eye_customizer_defaults['business-eye-number-of-words'] ), 'control' => array( 'label' => __( 'Number Of Words For Excerpt', 'business-eye' ), 'description' => __( 'This will controll the excerpt length on listing page', 'business-eye' ), 'section' => 'business-eye-layout-options', 'type' => 'number', 'input_attrs' => array( 'min' => 1, 'max' => 200), 'priority' => 40, 'active_callback' => '' ) ); $business_eye_settings_controls['business-eye-single-post-image-align'] = array( 'setting' => array( 'default' => $business_eye_customizer_defaults['business-eye-single-post-image-align'], ), 'control' => array( 'label' => __( 'Alignment Of Image In Single Post/Page', 'business-eye' ), 'section' => 'business-eye-layout-options', 'type' => 'select', 'choices' => array( 'full' => __( 'Full', 'business-eye' ), 'right' => __( 'Right', 'business-eye' ), 'left' => __( 'Left', 'business-eye' ), 'no-image' => __( 'No image', 'business-eye' ) ), 'priority' => 50, 'description' => __( 'Please note that this setting can be override from individual post/page', 'business-eye' ), ) );