Changeset 56191 for trunk/src/wp-includes/https-detection.php
- Timestamp:
- 07/10/2023 10:36:06 PM (2 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/https-detection.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/https-detection.php
r55988 r56191 50 50 */ 51 51 function wp_is_site_url_using_https() { 52 // Use direct option access for 'siteurl' and manually run the 'site_url' 53 // filter because `site_url()` will adjust the scheme based on what the 54 // current request is using. 52 /* 53 * Use direct option access for 'siteurl' and manually run the 'site_url' 54 * filter because `site_url()` will adjust the scheme based on what the 55 * current request is using. 56 */ 55 57 /** This filter is documented in wp-includes/link-template.php */ 56 58 $site_url = apply_filters( 'site_url', get_option( 'siteurl' ), '', null, null );
Note: See TracChangeset
for help on using the changeset viewer.