wc_checkout_is_https()
Check if the checkout is configured for https. Look at options, WP HTTPS plugin, or the permalink itself.
Хуков нет.
Возвращает
true|false
.
Использование
wc_checkout_is_https();
Список изменений
С версии 2.5.0 | Введена. |
Код wc_checkout_is_https() wc checkout is https WC 8.3.1
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:' ); }