add_section( 'post_pp_section', array( 'title' => esc_html__( 'Read Later Post Settings', 'primebulletin' ), 'priority' => 10, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); $wp_customize->add_setting('ed_post_read_later', array( 'default' => $primebulletin_default['ed_post_read_later'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'primebulletin_sanitize_checkbox', ) ); $wp_customize->add_control('ed_post_read_later', array( 'label' => esc_html__('Enable Posts Author', 'primebulletin'), 'section' => 'post_pp_section', 'type' => 'checkbox', ) );