wc_terms_and_conditions_checkbox_text()
Output t&c checkbox text.
No Hooks.
Return
null
. Nothing (null).
Usage
wc_terms_and_conditions_checkbox_text();
Changelog
Since 3.4.0 | Introduced. |
wc_terms_and_conditions_checkbox_text() wc terms and conditions checkbox text code WC 9.8.2
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 ) ); }