add_section( 'arther_site_layout_section', array( 'priority' => 36, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __( 'Site Layout Options', 'arther' ), 'panel' => 'arther_panel', ) ); /*Box Shadow in Blog Page*/ $wp_customize->add_setting( 'arther_options[arther-site-layout-blog-overlay]', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => $default['arther-site-layout-blog-overlay'], 'sanitize_callback' => 'arther_sanitize_checkbox' ) ); $wp_customize->add_control( 'arther_options[arther-site-layout-blog-overlay]', array( 'label' => __( 'Box Shadow of Blog and Sidebar', 'arther' ), 'description' => __('Remove Box Shadow completely and make it clean.', 'arther'), 'section' => 'arther_site_layout_section', 'settings' => 'arther_options[arther-site-layout-blog-overlay]', 'type' => 'checkbox', 'priority' => 15, ) );