add_section( 'blog_cafe_single_page_settings', array( 'title' => esc_html__( 'Single Pages', 'blog-cafe' ), 'description' => esc_html__( 'Settings for all single pages.', 'blog-cafe' ), 'panel' => 'blog_cafe_general_panel', ) ); // Author enable setting $wp_customize->add_setting( 'blog_cafe_enable_single_page_author', array( 'sanitize_callback' => 'blog_cafe_sanitize_checkbox', 'default' => false, ) ); $wp_customize->add_control( 'blog_cafe_enable_single_page_author', array( 'section' => 'blog_cafe_single_page_settings', 'label' => esc_html__( 'Enable Page Author.', 'blog-cafe' ), 'type' => 'checkbox', ) ); ?>