Astra_Admin_Settings::get_starter_templates_slug()

Check if installed Starter Sites plugin is new.


Description


Source

File: inc/core/class-astra-admin-settings.php

		public static function get_starter_templates_slug() {

			if ( defined( 'ASTRA_PRO_SITES_VER' ) && version_compare( ASTRA_PRO_SITES_VER, '2.0.0', '>=' ) ) {
				self::$starter_templates_slug = 'starter-templates';
			}

			if ( defined( 'ASTRA_SITES_VER' ) && version_compare( ASTRA_SITES_VER, '2.0.0', '>=' ) ) {
				self::$starter_templates_slug = 'starter-templates';
			}
		}

Changelog

Changelog
Version Description
2.3.2 Introduced.

User Contributed Notes

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