wc_checkout_privacy_policy_text()WC 3.4.0

Render privacy policy text on the checkout.

No Hooks.

Return

null. Nothing (null).

Usage

wc_checkout_privacy_policy_text();

Changelog

Since 3.4.0 Introduced.

wc_checkout_privacy_policy_text() code WC 8.6.1

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