Astra_Builder_Helper::is_header_footer_builder_active()

For existing users, do not load the wide/full width image CSS by default.


Description


Return

(boolean) false if it is an existing user , true if not.


Source

File: inc/core/builder/class-astra-builder-helper.php

	public static function is_header_footer_builder_active() {

		$astra_settings           = get_option( ASTRA_THEME_SETTINGS );
		$is_header_footer_builder = isset( $astra_settings['is-header-footer-builder'] ) ? (bool) $astra_settings['is-header-footer-builder'] : true;
		return apply_filters( 'astra_is_header_footer_builder_active', $is_header_footer_builder );
	}

Changelog

Changelog
Version Description
3.0.0 Introduced.


User Contributed Notes

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