force_ssl_content

函数
force_ssl_content ( $force = '' )
参数
  • (bool) $force
    Required:
    Default: (empty)
返回值
  • (bool) True if forced, false if not forced.
定义位置
相关方法
force_ssl_loginforce_ssl_adminwp_ssl_constantsthe_contentget_the_content
引入
2.8.5
弃用
-

force_ssl_content: 这个函数用于强制对WordPress网站上的所有内容进行SSL加密。这对于确保敏感的用户数据,如登录凭证和个人信息,被安全地传输是很重要的。

决定是否对内容强制使用SSL。

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

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

	return $forced_content;
}

常见问题

FAQs
查看更多 >