Add a New Panel, Section, Setting and Control for the Customizer <?php add_action( ' customize_register ' , ' genesischild_register_theme_customizer ' ); /* * Register Our Customizer Stuff Here */ function genesischild_register_theme_customizer ( $wp_customize ) { // Create custom panel. $wp_customize -> add_panel( ' text_blocks ' , array ( ' priority ' => 500 , ' theme_supports ' => ' ' , ' title ' => __( ' Text Blocks ' , ' genesischild ' ), ' description ' => __( ' Set editable text for certain content. ' , ' genesischild ' ), ) ); // Add Footer Text // Add section. $wp_customize -> add_section( ' custom_footer_text ' , array ( ' title ' => __( ' Change Footer Text ' , ' genesischild ' ), ' panel ' => ' text_blocks ' , ' ...