Astra_Addon_Update_Filter_Function::astra_addon_update_site_templates_headings_space()

Restrict site builder templates heading spacing.


Description


Return

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


Source

File: classes/class-astra-addon-update-filter-function.php

	public static function astra_addon_update_site_templates_headings_space() {
		$astra_settings = get_option( ASTRA_THEME_SETTINGS, array() );
		$astra_settings['site-builder-templates-headings-space'] = isset( $astra_settings['site-builder-templates-headings-space'] ) ? false : true;
		return apply_filters( 'astra_get_option_site-builder-templates-headings-space', $astra_settings['site-builder-templates-headings-space'] );
	}

Changelog

Changelog
Version Description
4.6.8 Introduced.


User Contributed Notes

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