wc_terms_and_conditions_checkbox_enabled()
See if the checkbox is enabled or not based on the existance of the terms page and checkbox text.
Description Description
Return Return
(bool)
Source Source
File: includes/wc-template-functions.php
function wc_terms_and_conditions_checkbox_enabled() {
$page_id = wc_terms_and_conditions_page_id();
$page = $page_id ? get_post( $page_id ) : false;
return $page && wc_get_terms_and_conditions_checkbox_text();
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |