Astra_Sticky_Header_Sections_Configs::register_configuration( Array $configurations, WP_Customize_Manager $wp_customize )

Register Sticky Header – Header Sections Customizer Configurations.


Description


Parameters

$configurations

(Array) (Required) Astra Customizer Configurations.

$wp_customize

(WP_Customize_Manager) (Required) instance of WP_Customize_Manager.


Return

(Array) Astra Customizer Configurations with updated configurations.


Source

File: addons/sticky-header/classes/sections/class-astra-sticky-header-sections-configs.php

		public function register_configuration( $configurations, $wp_customize ) {

			$_config = array(

				/**
				 * Header Button - Sticky
				 */
				array(
					'name'     => 'section-header-button-sticky',
					'type'     => 'section',
					'priority' => 10,
					'title'    => __( 'Sticky Header Button', 'astra-addon' ),
					'section'  => 'section-header-button',
				),
			);

			if ( Astra_Sticky_Header_Configs::is_header_section_active() ) {
				$_config[] = array(
					'name'      => ASTRA_THEME_SETTINGS . '[header-above-stick]',
					'default'   => astra_get_option( 'header-above-stick' ),
					'type'      => 'control',
					'section'   => 'section-sticky-header',
					'title'     => __( 'Stick Above Header', 'astra-addon' ),
					'priority'  => 5,
					'control'   => Astra_Theme_Extension::$switch_control,
					'context'   => ! astra_addon_builder_helper()->is_header_footer_builder_active ? array( ASTRA_THEME_SETTINGS . '[above-header-layout]', '!=', 'disabled' ) : '',
					'transport' => 'refresh',
					'divider'   => array( 'ast_class' => 'ast-bottom-divider' ),
				);
				$_config[] = array(
					'name'      => ASTRA_THEME_SETTINGS . '[header-below-stick]',
					'default'   => astra_get_option( 'header-below-stick' ),
					'type'      => 'control',
					'section'   => 'section-sticky-header',
					'title'     => __( 'Stick Below Header', 'astra-addon' ),
					'priority'  => 13,
					'control'   => Astra_Theme_Extension::$switch_control,
					'context'   => ! astra_addon_builder_helper()->is_header_footer_builder_active ? array( ASTRA_THEME_SETTINGS . '[below-header-layout]', '!=', 'disabled' ) : '',
					'transport' => 'refresh',
					'divider'   => array( 'ast_class' => 'ast-bottom-divider' ),
				);
			}

			return array_merge( $configurations, $_config );
		}

Changelog

Changelog
Version Description
1.4.3 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.