Astra_Dynamic_CSS::gtn_group_cover_css_comp()
Do not apply new wide/full Group and Cover block CSS for existing users.
Description
Return
(bool) false if it is an existing user , true if not.
Source
File: inc/class-astra-dynamic-css.php
public static function gtn_group_cover_css_comp() {
$astra_settings = get_option( ASTRA_THEME_SETTINGS );
$astra_settings['gtn-full-wide-grp-cover-css'] = isset( $astra_settings['gtn-full-wide-grp-cover-css'] ) ? false : true;
return apply_filters( 'astra_gtn_group_cover_css_comp', $astra_settings['gtn-full-wide-grp-cover-css'] );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |