astra_addon_has_widgets_block_editor()

Check is WordPress version is greater than or equal to 5.8 version.


Description


Return

(bool)


Source

File: classes/helper-functions.php

function astra_addon_has_widgets_block_editor() {
	if ( function_exists( 'astra_has_widgets_block_editor' ) ) {
		return astra_has_widgets_block_editor();
	}
	return false;
}

Changelog

Changelog
Version Description
3.5.5 Introduced.


User Contributed Notes

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