wc_privacy_policy_text( string $type = 'checkout' )
Output privacy policy text. This is custom text which can be added via the customizer/privacy settings section.
Description Description
Loads the relevant policy for the current page unless a specific policy text is required.
Parameters Parameters
- $type
-
(Optional) Type of policy to load. Valid values include registration and checkout.
Default value: 'checkout'
Source Source
File: includes/wc-template-functions.php
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 ) ) ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |