astra_zero_font_size_case()
Dont apply zero size to existing user.
Description
Return
(boolean) false if it is an existing user , true if not.
Source
File: inc/core/common-functions.php
function astra_zero_font_size_case() {
$astra_settings = get_option( ASTRA_THEME_SETTINGS );
$astra_settings['astra-zero-font-size-case-css'] = isset( $astra_settings['astra-zero-font-size-case-css'] ) ? false : true;
return apply_filters( 'astra_zero_font_size_case', $astra_settings['astra-zero-font-size-case-css'] );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 3.6.9 | Introduced. |