wc_get_terms_and_conditions_checkbox_text()
Get the terms and conditions checkbox text, if set.
Hooks from the function
Return
String
.
Usage
wc_get_terms_and_conditions_checkbox_text();
Changelog
Since 3.4.0 | Introduced. |
wc_get_terms_and_conditions_checkbox_text() wc get terms and conditions checkbox text code WC 9.3.3
function wc_get_terms_and_conditions_checkbox_text() { /* translators: %s terms and conditions page name and link */ return trim( apply_filters( 'woocommerce_get_terms_and_conditions_checkbox_text', get_option( 'woocommerce_checkout_terms_and_conditions_checkbox_text', sprintf( __( 'I have read and agree to the website %s', 'woocommerce' ), '[terms]' ) ) ) ); }