Wordpress - Themes and Appearance
Identify the error in this Theme Customizer code snippet:
$wp_customize->add_setting('footer_text', [
'default' => 'Footer here',
'sanitize_callback' => 'sanitize_text_field'
]);
$wp_customize->add_control('footer_text', [
'label' => 'Footer Text',
'section' => 'footer_section',
'type' => 'textarea'
]);
Assuming 'footer_section' was never added, what issue will occur?