wc_privacy_policy_text()WC 3.4.0

Output privacy policy text. This is custom text which can be added via the customizer/privacy settings section.

Loads the relevant policy for the current page unless a specific policy text is required.

No Hooks.

Return

null. Nothing (null).

Usage

wc_privacy_policy_text( $type );
$type(string)
Type of policy to load. Valid values include registration and checkout.
Default: 'checkout'

Changelog

Since 3.4.0 Introduced.

wc_privacy_policy_text() code WC 8.7.0

function wc_privacy_policy_text( $type = 'checkout' ) {
	if ( ! wc_privacy_policy_page_id() ) {
		return;
	}
	echo wp_kses_post( wpautop( wc_replace_policy_page_link_placeholders( wc_get_privacy_policy_text( $type ) ) ) );
}