astra_addon_sticky_site_title_tagline_css_comp()

For existing users, do not apply the defaut header site title color by default.


Description


Return

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


Source

File: addons/sticky-header/classes/dynamic-css/dynamic.css.php

function astra_addon_sticky_site_title_tagline_css_comp() {
	$astra_settings = get_option( ASTRA_THEME_SETTINGS );
	$astra_settings['sticky-header-default-site-title-tagline-css'] = isset( $astra_settings['sticky-header-default-site-title-tagline-css'] ) ? false : true;
	return apply_filters( 'astra_default_site_title_tagline_css_comp', $astra_settings['sticky-header-default-site-title-tagline-css'] );
}

Changelog

Changelog
Version Description
3.5.8 Introduced.


User Contributed Notes

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