Make WordPress Core


Ignore:
Timestamp:
07/10/2023 10:36:06 PM (2 years ago)
Author:
audrasjb
Message:

Docs: Replace multiple single line comments with multi-line comments.

This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.

Follow-up to [56174], [56175], [56176], [56177], [56178], [56179], [56180].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/https-detection.php

    r55988 r56191  
    5050 */
    5151function 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     */
    5557    /** This filter is documented in wp-includes/link-template.php */
    5658    $site_url = apply_filters( 'site_url', get_option( 'siteurl' ), '', null, null );
Note: See TracChangeset for help on using the changeset viewer.