Uses
| Uses | Description |
|---|---|
| wp-includes/functions.php: force_ssl_admin() | Whether to force SSL used for the Administration Screens. |
| wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
This function has been deprecated. Use force_ssl_admin() instead.
Whether SSL login should be forced.
(string|bool) (Optional) Whether to force SSL login.
Default value: null
(bool) True if forced, false if not forced.
File: wp-includes/deprecated.php
function force_ssl_login( $force = null ) {
_deprecated_function( __FUNCTION__, '4.4.0', 'force_ssl_admin()' );
return force_ssl_admin( $force );
} | Version | Description |
|---|---|
| 4.4.0 | Use force_ssl_admin() |
| 2.6.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/force_ssl_login