[ Index ] |
PHP Cross Reference of WordPress |
[Source view] [Print] [Project Stats]
HTTPS detection functions.
File Size: | 227 lines (7 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
wp_is_using_https() X-Ref |
Checks whether the website is using HTTPS. This is based on whether both the home and site URL are using HTTPS. return: bool True if using HTTPS, false otherwise. since: 5.7.0 |
wp_is_home_url_using_https() X-Ref |
Checks whether the current site URL is using HTTPS. return: bool True if using HTTPS, false otherwise. since: 5.7.0 |
wp_is_site_url_using_https() X-Ref |
Checks whether the current site's URL where WordPress is stored is using HTTPS. This checks the URL where WordPress application files (e.g. wp-blog-header.php or the wp-admin/ folder) are accessible. return: bool True if using HTTPS, false otherwise. since: 5.7.0 |
wp_is_https_supported() X-Ref |
Checks whether HTTPS is supported for the server and domain. return: bool True if HTTPS is supported, false otherwise. since: 5.7.0 |
wp_update_https_detection_errors() X-Ref |
Runs a remote HTTPS request to detect whether HTTPS supported, and stores potential errors. This internal function is called by a regular Cron hook to ensure HTTPS support is detected and maintained. since: 5.7.0 |
wp_schedule_https_detection() X-Ref |
Schedules the Cron hook for detecting HTTPS support. since: 5.7.0 |
wp_cron_conditionally_prevent_sslverify( $request ) X-Ref |
Disables SSL verification if the 'cron_request' arguments include an HTTPS URL. This prevents an issue if HTTPS breaks, where there would be a failed attempt to verify HTTPS. return: array The filtered Cron request arguments. param: array $request The Cron request arguments. since: 5.7.0 |
wp_is_local_html_output( $html ) X-Ref |
Checks whether a given HTML string is likely an output from this WordPress site. This function attempts to check for various common WordPress patterns whether they are included in the HTML string. Since any of these actions may be disabled through third-party code, this function may also return null to indicate that it was not possible to determine ownership. return: bool|null True/false for whether HTML was generated by this site, null if unable to determine. param: string $html Full HTML output string, e.g. from a HTTP response. since: 5.7.0 |
Generated: Sat Nov 23 01:00:02 2024 | Cross-referenced by PHPXref 0.7.1 |