This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Brainstorm_Update_Astra_Addon::is_using_beta()

Check if Astra Theme or Astra Pro are using beta/alpha versions


Description


Return

(boolean) True if Astra Theme or Pro are using beta/alpha versions. False is both theme and pro are using stable versions.


Source

File: class-brainstorm-update-astra-addon.php

		private function is_using_beta() {
			return strpos( ASTRA_EXT_VER, 'beta' ) ||
				strpos( ASTRA_EXT_VER, 'alpha' ) ||
				strpos( ASTRA_THEME_VERSION, 'beta' ) ||
				strpos( ASTRA_THEME_VERSION, 'alpha' );
		}

Changelog

Changelog
Version Description
1.6.0 Introduced.


User Contributed Notes

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