force_ssl_content( bool $force = '' )

Whether to force SSL on content.

Parameters

$force

(bool) (Optional)

Default value: ''

Return

(bool) True if forced, false if not forced.

Source

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;
}

Changelog

Version Description
2.8.5 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/force_ssl_content