Used By
Used By | Description |
---|---|
wp-includes/ms-functions.php: filter_SSL() | Formats a URL to use https. |
Whether to force SSL on content.
(bool) (Optional)
Default value: ''
(bool) True if forced, false if not forced.
File: wp-includes/ms-functions.php
function force_ssl_content( $force = '' ) { static $forced_content = false; if ( ! $force ) { $old_forced = $forced_content; $forced_content = $force; return $old_forced; } return $forced_content; }
Version | Description |
---|---|
2.8.5 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/force_ssl_content