force_ssl_content()WP 2.8.5

Determines whether to force SSL on content.

No Hooks.

Returns

true|false. True if forced, false if not forced.

Usage

force_ssl_content( $force );
$force(true|false|null)
Whether to force SSL in admin screens.
Default: null

Changelog

Since 2.8.5 Introduced.

force_ssl_content() code WP 7.0

function force_ssl_content( $force = null ) {
	static $forced_content = false;

	if ( ! is_null( $force ) ) {
		$old_forced     = $forced_content;
		$forced_content = (bool) $force;
		return $old_forced;
	}

	return $forced_content;
}