Brainstorm_Update_Astra_Addon::get_registration_page_url()

Get registration page url for astra addon.


Description


Return

(String) URL of the licnense registration page.


Source

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

		public function get_registration_page_url() {
			$url = admin_url( 'themes.php?page=astra' );

			if ( method_exists( 'Astra_Admin_Settings', 'get_theme_page_slug' ) ) {
				$url = admin_url( 'themes.php?page=' . Astra_Admin_Settings::get_theme_page_slug() );
			}

			return $url;
		}

Changelog

Changelog
Version Description
1.0.0 Introduced.

User Contributed Notes

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