bp_has_custom_activation_page()

Do we have a working custom activation page?


Description Description


Return Return

(boolean) True if page and template exist, false if not.


Top ↑

Source Source

File: bp-members/bp-members-template.php

function bp_has_custom_activation_page() {
	static $has_page = false;

	if ( empty( $has_page ) )
		$has_page = bp_get_activate_slug() && bp_locate_template( array( 'registration/activate.php', 'members/activate.php', 'activate.php' ), false );

	return (bool) $has_page;
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.5.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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