force_ssl_login( string|bool $force = null ): bool

This function has been deprecated. Use force_ssl_admin() instead.

Whether SSL login should be forced.

Description

See also

Parameters

$forcestring|booloptional
Optional Whether to force SSL login.

Default:null

Return

bool True if forced, false if not forced.

Source

function force_ssl_login( $force = null ) {
	_deprecated_function( __FUNCTION__, '4.4.0', 'force_ssl_admin()' );
	return force_ssl_admin( $force );
}

Changelog

VersionDescription
4.4.0Use force_ssl_admin()
2.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.