Astra_Rollback_Version::astra_get_white_lable_name()

Get the astra white lable name.


Description


Source

File: admin/astra-rollback/class-astra-rollback-version.php

	public static function astra_get_white_lable_name() {

		$theme_name               = __( 'Astra', 'astra-addon' );
		$theme_whitelabelled_name = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'astra', 'name', false );

		if ( false !== $theme_whitelabelled_name ) {
			return $theme_whitelabelled_name;
		}

		return $theme_name;
	}


User Contributed Notes

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