wc_terms_and_conditions_checkbox_text()
Output t&c checkbox text.
Description Description
Source Source
File: includes/wc-template-functions.php
function wc_terms_and_conditions_checkbox_text() {
$text = wc_get_terms_and_conditions_checkbox_text();
if ( ! $text ) {
return;
}
echo wp_kses_post( wc_replace_policy_page_link_placeholders( $text ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |