Astra_Builder_Helper::is_header_footer_builder_active()
For existing users, do not load the wide/full width image CSS by default.
Description
Return
(bool) 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 );
	}
			Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description | 
|---|---|
| 3.0.0 | Introduced. |