llms_is_site_https()
Check if the home URL is https. If it is, we don’t need to do things such as ‘force ssl’.
Return Return
(bool)
Source Source
File: includes/llms.functions.core.php
function llms_is_site_https() { return false !== strstr( get_option( 'home' ), 'https:' ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |