Make WordPress Core


Ignore:
Timestamp:
07/10/2023 10:46:22 PM (23 months 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], [56191].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/post-template.php

    r55988 r56192  
    286286    }
    287287
    288     // Use the globals if the $post parameter was not specified,
    289     // but only after they have been set up in setup_postdata().
     288    /*
     289     * Use the globals if the $post parameter was not specified,
     290     * but only after they have been set up in setup_postdata().
     291     */
    290292    if ( null === $post && did_action( 'the_post' ) ) {
    291293        $elements = compact( 'page', 'more', 'preview', 'pages', 'multipage' );
Note: See TracChangeset for help on using the changeset viewer.