wc_terms_and_conditions_checkbox_text()WC 3.4.0

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() code WC 8.6.1

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 ) );
}