wc_registration_privacy_policy_text()WC 3.4.0

Render privacy policy text on the register forms.

No Hooks.

Return

null. Nothing (null).

Usage

wc_registration_privacy_policy_text();

Changelog

Since 3.4.0 Introduced.

wc_registration_privacy_policy_text() code WC 8.7.0

function wc_registration_privacy_policy_text() {
	echo '<div class="woocommerce-privacy-policy-text">';
	wc_privacy_policy_text( 'registration' );
	echo '</div>';
}