astra_get_transparent_header_default_value()
Set flag to manage backward compatibility for v3.5.0 earlier users for the transparent header border bottom default value changed.
Description
Source
File: inc/extras.php
function astra_get_transparent_header_default_value() {
$astra_settings = get_option( ASTRA_THEME_SETTINGS );
$astra_settings['transparent-header-default-border'] = isset( $astra_settings['transparent-header-default-border'] ) ? false : true;
return apply_filters( 'astra_transparent_header_default_border', $astra_settings['transparent-header-default-border'] );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 3.6.0 | Introduced. |