Which of the following is the correct syntax to add a new section in the Theme Customizer?
A$wp_customize->add_setting('footer_section', array('title' => 'Footer Settings'));
B$wp_customize->add_section('footer_section', array('title' => 'Footer Settings'));
C$wp_customize->add_control('footer_section', array('title' => 'Footer Settings'));
D$wp_customize->register_section('footer_section', array('title' => 'Footer Settings'));