wc_get_terms_and_conditions_checkbox_text()
Get the terms and conditons checkbox text, if set.
Description Description
Return Return
(string)
Source Source
File: includes/wc-template-functions.php
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]' ) ) ) ); }
Changelog Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |