wc_checkout_is_https()
Check if the checkout is configured for https. Look at options, WP HTTPS plugin, or the permalink itself.
Description Description
Return Return
(bool)
Source Source
File: includes/wc-conditional-functions.php
function wc_checkout_is_https() {
return wc_site_is_https() || 'yes' === get_option( 'woocommerce_force_ssl_checkout' ) || class_exists( 'WordPressHTTPS' ) || strstr( wc_get_page_permalink( 'checkout' ), 'https:' );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |