force_ssl_admin( string|bool $force = null )

Whether to force SSL used for the Administration Screens.


Description


Parameters

$force

(string|bool) (Optional) Whether to force SSL in admin screens.

Default value: null


Top ↑

Return

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


Top ↑

Source

File: wp-includes/functions.php

function force_ssl_admin( $force = null ) {
	static $forced = false;

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

	return $forced;
}

Top ↑

Changelog

Version Description
2.6.0 Introduced.