Make WordPress Core


Ignore:
Timestamp:
01/29/2020 12:43:23 AM (6 years ago)
Author:
SergeyBiryukov
Message:

Docs: Improve inline comments per the documentation standards.

Includes minor code layout fixes for better readability.

See #48303.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyeleven/author.php

    r46088 r47122  
    3737                <?php
    3838                    /*
    39                      * Since we called the_post() above, we need to
    40                      * rewind the loop back to the beginning that way
    41                      * we can run the loop properly, in full.
     39                     * Since we called the_post() above, we need
     40                     * to rewind the loop back to the beginning.
     41                     * That way we can run the loop properly, in full.
    4242                     */
    4343                    rewind_posts();
     
    7676                <?php endif; ?>
    7777
    78                 <?php /* Start the Loop */ ?>
    7978                <?php
     79                // Start the Loop.
    8080                while ( have_posts() ) :
    8181                    the_post();
     
    8686                         * Include the Post-Format-specific template for the content.
    8787                         * If you want to overload this in a child theme then include a file
    88                          * called content-___.php (where ___ is the Post Format name) and that will be used instead.
     88                         * called content-___.php (where ___ is the Post Format name) and that
     89                         * will be used instead.
    8990                         */
    9091                        get_template_part( 'content', get_post_format() );
Note: See TracChangeset for help on using the changeset viewer.