参数
$force
string|bool可选-
是否在管理屏幕中强制SSL。
默认:
null
返回
bool 如果强制则为true,如果不强制则为false。
更多信息
确定是否应通过SSL查看管理面板。如果您在SSL上使用站点,则此函数依赖于在wp-config.php文件中设置的 FORCE_SSL_ADMIN 常量。
force 参数将更改此函数的返回值,直到重置。
源码
更新日志
版本 | 描述 |
---|---|
2.6.0 | 开始引入 |
使用示例
默认用法
<?php if ( force_ssl_admin() ) { echo 'Administration should be performed over SSL'; } ?>
更改返回值
<?php force_ssl_admin(true); if ( force_ssl_admin() ) { echo 'Administration should be performed over SSL'; } else { echo 'This code will never execute'; } force_ssl_admin(false); if ( force_ssl_admin() ) { echo 'This code will never execute'; } else { echo 'Administration should NOT be performed over SSL'; } ?>
重置返回值
<?php force_ssl_admin(FORCE_SSL_ADMIN); ?>