wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_is_https_supported › WordPress Function

Depuis5.7.0
Dépréciéen/a
wp_is_https_supported ( Pas de paramètres )
Retourne:
  • (bool) True if HTTPS is supported, false otherwise.
Défini(e) dans:
Codex:

Checks whether HTTPS is supported for the server and domain.



Source

function wp_is_https_supported() {
	$https_detection_errors = get_option( 'https_detection_errors' );

	// If option has never been set by the Cron hook before, run it on-the-fly as fallback.
	if ( false === $https_detection_errors ) {
		wp_update_https_detection_errors();

		$https_detection_errors = get_option( 'https_detection_errors' );
	}

	// If there are no detection errors, HTTPS is supported.
	return empty( $https_detection_errors );
}