wp-includes/https-detection.php
Lines:
1 to 25 of 25
<?php /** * HTTPS detection functions. * * @package WordPress * @since 5.7.0 */ /* function wp_is_using_https() – Checks whether the website is using HTTPS. */ /* function wp_is_home_url_using_https() – Checks whether the current site URL is using HTTPS. */ /* function wp_is_site_url_using_https() – Checks whether the current site’s URL where WordPress is stored is using HTTPS. */ /* function wp_is_https_supported() – Checks whether HTTPS is supported for the server and domain. */ /* function wp_update_https_detection_errors() – Runs a remote HTTPS request to detect whether HTTPS supported, and stores potential errors. */ /* function wp_schedule_https_detection() – Schedules the Cron hook for detecting HTTPS support. */ /* function wp_cron_conditionally_prevent_sslverify() – Disables SSL verification if the ‘cron_request’ arguments include an HTTPS URL. */ /* function wp_is_local_html_output() – Checks whether a given HTML string is likely an output from this WordPress site. */