is_dozent_user_signup_page()

Check is current page or screen is instructor signup page


Description

Determine if current page is User Signup Page It will return true only if signup page use via Settings > Page > User Signup selected Page

Example usage:

is_dozent_user_signup_page();

Return

(bool)


Source

File: includes/conditional-functions.php

	function is_dozent_user_signup_page() {
		$page_id = dozent_user_signup_page_id();

		if ( $page_id && is_page( $page_id ) ) {
			return true;
		}

		return false;
	}


Changelog

Changelog
Version Description
DozentLMS 1.0.0 Introduced.