'colors', 'id' => 'navigation-text-color', 'label' => esc_html__( 'Navigation Text Color On Hover', 'blogspace' ), 'type' => 'color', 'priority' => 41, 'default' => '#2f4468', ); // Header navigation background hover control. $settings['navigation-hover-color'] = array( 'section' => 'colors', 'id' => 'navigation-hover-color', 'label' => esc_html__( 'Navigation Hover Color', 'blogspace' ), 'type' => 'color', 'priority' => 41, 'default' => '#eb4449', ); // Link colors control. $settings['links-color'] = array( 'section' => 'colors', 'id' => 'links-color', 'label' => esc_html__( 'Links Color', 'blogspace' ), 'type' => 'color', 'priority' => 41, 'default' => '#eb4449', ); // Adds the panels to the $settings array. $settings['panels'] = $panels; // Adds the sections to the $settings array. $settings['sections'] = $sections; $customizer_helper = Customizer_Helper::Instance(); $customizer_helper->add_settings( $settings ); } add_action( 'init', 'customizer_helper_settings' );