Astra_Dynamic_CSS::v4_block_editor_compat()
Block editor experience improvements css introduced with v4.0.0.
Description
Return
(bool) false if it is an existing user , true if not.
Source
File: inc/class-astra-dynamic-css.php
public static function v4_block_editor_compat() {
$astra_settings = get_option( ASTRA_THEME_SETTINGS );
$astra_settings['v4-block-editor-compat'] = isset( $astra_settings['v4-block-editor-compat'] ) ? false : true;
return apply_filters( 'astra_v4_block_editor_compat', $astra_settings['v4-block-editor-compat'] );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 4.0.0 | Introduced. |