'footer-color', 'type' => 'sub-control', 'priority' => 5, 'parent' => ASTRA_THEME_SETTINGS . '[footer-bar-content-group]', 'section' => 'section-footer-small', 'control' => 'ast-color', 'title' => __( 'Text Color', 'astra' ), 'default' => astra_get_option( 'footer-color' ), ), /** * Option: Link Color */ array( 'name' => 'footer-link-color', 'type' => 'sub-control', 'priority' => 6, 'parent' => ASTRA_THEME_SETTINGS . '[footer-bar-link-color-group]', 'section' => 'section-footer-small', 'control' => 'ast-color', 'default' => astra_get_option( 'footer-link-color' ), 'title' => __( 'Normal', 'astra' ), ), /** * Option: Link Hover Color */ array( 'name' => 'footer-link-h-color', 'type' => 'sub-control', 'priority' => 5, 'parent' => ASTRA_THEME_SETTINGS . '[footer-bar-link-color-group]', 'section' => 'section-footer-small', 'control' => 'ast-color', 'title' => __( 'Hover', 'astra' ), 'default' => astra_get_option( 'section-footer-small' ), ), /** * Option: Footer Background */ array( 'name' => 'footer-bg-obj', 'type' => 'sub-control', 'priority' => 7, 'parent' => ASTRA_THEME_SETTINGS . '[footer-bar-background-group]', 'section' => 'section-footer-small', 'transport' => 'postMessage', 'control' => 'ast-background', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_background_obj' ), 'default' => astra_get_option( 'footer-bg-obj' ), 'label' => __( 'Background', 'astra' ), ), ); $configurations = array_merge( $configurations, $_configs ); return $configurations; } } } new Astra_Footer_Colors_Configs();