定义与cookie相关的WordPress常量
原型
wp_ssl_constants()
源文件
路径:wp-includes/default-constants.php
<?php
...
function wp_ssl_constants() {
/**
* @since 2.6.0
*/
if ( !defined( 'FORCE_SSL_ADMIN' ) ) {
if ( 'https' === parse_url( get_option( 'siteurl' ), PHP_URL_SCHEME ) ) {
define( 'FORCE_SSL_ADMIN', true );
} else {
define( 'FORCE_SSL_ADMIN', false );
}
}
force_ssl_admin( FORCE_SSL_ADMIN );
/**
* @since 2.6.0
* @deprecated 4.0.0
*/
if ( defined( 'FORCE_SSL_LOGIN' ) && FORCE_SSL_LOGIN ) {
force_ssl_admin( true );
}
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/wp_ssl_constants/