wpseek.com
				A WordPress-centric search engine for devs and theme authors
			wp_ssl_constants › WordPress Function
Since3.0.0
Deprecatedn/a
› wp_ssl_constants ( No parameters )
| Defined at: | 
 | 
| Codex: | 
Defines SSL-related WordPress constants.
Related Functions: wp_initial_constants, wp_cookie_constants, ms_file_constants, wp_templating_constants, wp_set_comment_status
	Source
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 );
	}
}