Astra_Dynamic_CSS::v4_block_editor_compat()

Block editor experience improvements css introduced with v4.0.0.


Description


Return

(boolean) 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'] );
		}

Changelog

Changelog
Version Description
4.0.0 Introduced.


User Contributed Notes

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